From 12c822d548ea285675b23bfc981c3f2419179245 Mon Sep 17 00:00:00 2001 From: Luke Policinski Date: Sat, 20 Jun 2026 11:33:51 -0400 Subject: [PATCH] feature: draft rooms --- generated/schema.graphql | 4983 +- generated/schema.ts | 4952 +- generated/types.ts | 83155 +++++++++------- hasura/enums/draft-game-captain-selection.sql | 5 + hasura/enums/draft-game-draft-order.sql | 4 + hasura/enums/draft-game-modes.sql | 6 + hasura/enums/draft-game-statuses.sql | 9 + hasura/metadata/actions.graphql | 35 + hasura/metadata/actions.yaml | 40 + .../tables/public_draft_game_picks.yaml | 80 + .../tables/public_draft_game_players.yaml | 117 + .../default/tables/public_draft_games.yaml | 212 + ...public_e_draft_game_captain_selection.yaml | 12 + .../public_e_draft_game_draft_order.yaml | 12 + .../tables/public_e_draft_game_mode.yaml | 12 + .../public_e_draft_game_player_status.yaml | 12 + .../tables/public_e_draft_game_status.yaml | 12 + .../default/tables/public_match_clips.yaml | 1 + .../default/tables/public_matches.yaml | 7 + .../default/tables/public_news_articles.yaml | 24 + .../default/tables/public_players.yaml | 4 + .../databases/default/tables/tables.yaml | 9 + .../1860000000100_draft_rooms/down.sql | 15 + .../default/1860000000100_draft_rooms/up.sql | 176 + .../default/1860000000200_news/down.sql | 3 + .../default/1860000000200_news/up.sql | 23 + .../down.sql | 1 + .../up.sql | 1 + hasura/triggers/draft_game_picks.sql | 34 + hasura/triggers/draft_game_players.sql | 133 + hasura/triggers/draft_games.sql | 82 + hasura/triggers/matches.sql | 21 +- hasura/triggers/player_sanctions.sql | 1 + package.json | 3 + src/app.module.ts | 4 + src/chat/chat.service.ts | 23 + src/chat/enums/ChatLobbyTypes.ts | 1 + src/draft-games/draft-game.service.ts | 1283 + src/draft-games/draft-games.controller.ts | 105 + src/draft-games/draft-games.module.ts | 59 + src/draft-games/draft-match.service.ts | 306 + src/draft-games/draft.service.ts | 599 + src/draft-games/enums/DraftGameQueues.ts | 3 + .../jobs/CleanExpiredDraftGames.ts | 38 + src/draft-games/jobs/DraftPickTimeout.ts | 22 + src/draft-games/types/DraftGame.ts | 46 + src/draft-games/types/DraftGameError.ts | 6 + src/news/enums/NewsQueues.ts | 3 + src/news/jobs/ScrapeTldrNews.ts | 16 + src/news/news.controller.ts | 40 + src/news/news.module.ts | 58 + src/news/news.service.ts | 479 + src/steam-match-history/steam-bans.service.ts | 26 +- src/system/enums/SystemSettingName.ts | 1 + src/utilities/QueueProcessors.ts | 2 + yarn.lock | 227 + 56 files changed, 59266 insertions(+), 38277 deletions(-) create mode 100644 hasura/enums/draft-game-captain-selection.sql create mode 100644 hasura/enums/draft-game-draft-order.sql create mode 100644 hasura/enums/draft-game-modes.sql create mode 100644 hasura/enums/draft-game-statuses.sql create mode 100644 hasura/metadata/databases/default/tables/public_draft_game_picks.yaml create mode 100644 hasura/metadata/databases/default/tables/public_draft_game_players.yaml create mode 100644 hasura/metadata/databases/default/tables/public_draft_games.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml create mode 100644 hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml create mode 100644 hasura/metadata/databases/default/tables/public_news_articles.yaml create mode 100644 hasura/migrations/default/1860000000100_draft_rooms/down.sql create mode 100644 hasura/migrations/default/1860000000100_draft_rooms/up.sql create mode 100644 hasura/migrations/default/1860000000200_news/down.sql create mode 100644 hasura/migrations/default/1860000000200_news/up.sql create mode 100644 hasura/migrations/default/1860000000300_draft_games_expires_at/down.sql create mode 100644 hasura/migrations/default/1860000000300_draft_games_expires_at/up.sql create mode 100644 hasura/triggers/draft_game_picks.sql create mode 100644 hasura/triggers/draft_game_players.sql create mode 100644 hasura/triggers/draft_games.sql create mode 100644 src/draft-games/draft-game.service.ts create mode 100644 src/draft-games/draft-games.controller.ts create mode 100644 src/draft-games/draft-games.module.ts create mode 100644 src/draft-games/draft-match.service.ts create mode 100644 src/draft-games/draft.service.ts create mode 100644 src/draft-games/enums/DraftGameQueues.ts create mode 100644 src/draft-games/jobs/CleanExpiredDraftGames.ts create mode 100644 src/draft-games/jobs/DraftPickTimeout.ts create mode 100644 src/draft-games/types/DraftGame.ts create mode 100644 src/draft-games/types/DraftGameError.ts create mode 100644 src/news/enums/NewsQueues.ts create mode 100644 src/news/jobs/ScrapeTldrNews.ts create mode 100644 src/news/news.controller.ts create mode 100644 src/news/news.module.ts create mode 100644 src/news/news.service.ts diff --git a/generated/schema.graphql b/generated/schema.graphql index 610d1d0f..0184de52 100644 --- a/generated/schema.graphql +++ b/generated/schema.graphql @@ -120,6 +120,10 @@ type CreateClipRenderOutput { success: Boolean! } +type CreateDraftGameOutput { + draftGameId: uuid! +} + type DatabaseStats { blks_hit: Int! blks_read: Int! @@ -2386,177 +2390,3020 @@ type db_backups_variance_fields { } """ -columns and relationships of "e_check_in_settings" +columns and relationships of "draft_game_picks" """ -type e_check_in_settings { - description: String! - value: String! +type draft_game_picks { + auto_picked: Boolean! + + """An object relationship""" + captain: players! + captain_steam_id: bigint! + created_at: timestamptz! + + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + id: uuid! + lineup: Int! + + """An object relationship""" + picked: players! + picked_steam_id: bigint! } """ -aggregated selection of "e_check_in_settings" +aggregated selection of "draft_game_picks" """ -type e_check_in_settings_aggregate { - aggregate: e_check_in_settings_aggregate_fields - nodes: [e_check_in_settings!]! +type draft_game_picks_aggregate { + aggregate: draft_game_picks_aggregate_fields + nodes: [draft_game_picks!]! +} + +input draft_game_picks_aggregate_bool_exp { + bool_and: draft_game_picks_aggregate_bool_exp_bool_and + bool_or: draft_game_picks_aggregate_bool_exp_bool_or + count: draft_game_picks_aggregate_bool_exp_count +} + +input draft_game_picks_aggregate_bool_exp_bool_and { + arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_picks_aggregate_bool_exp_bool_or { + arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_picks_aggregate_bool_exp_count { + arguments: [draft_game_picks_select_column!] + distinct: Boolean + filter: draft_game_picks_bool_exp + predicate: Int_comparison_exp! } """ -aggregate fields of "e_check_in_settings" +aggregate fields of "draft_game_picks" """ -type e_check_in_settings_aggregate_fields { - count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! - max: e_check_in_settings_max_fields - min: e_check_in_settings_min_fields +type draft_game_picks_aggregate_fields { + avg: draft_game_picks_avg_fields + count(columns: [draft_game_picks_select_column!], distinct: Boolean): Int! + max: draft_game_picks_max_fields + min: draft_game_picks_min_fields + stddev: draft_game_picks_stddev_fields + stddev_pop: draft_game_picks_stddev_pop_fields + stddev_samp: draft_game_picks_stddev_samp_fields + sum: draft_game_picks_sum_fields + var_pop: draft_game_picks_var_pop_fields + var_samp: draft_game_picks_var_samp_fields + variance: draft_game_picks_variance_fields } """ -Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. +order by aggregate values of table "draft_game_picks" """ -input e_check_in_settings_bool_exp { - _and: [e_check_in_settings_bool_exp!] - _not: e_check_in_settings_bool_exp - _or: [e_check_in_settings_bool_exp!] - description: String_comparison_exp - value: String_comparison_exp +input draft_game_picks_aggregate_order_by { + avg: draft_game_picks_avg_order_by + count: order_by + max: draft_game_picks_max_order_by + min: draft_game_picks_min_order_by + stddev: draft_game_picks_stddev_order_by + stddev_pop: draft_game_picks_stddev_pop_order_by + stddev_samp: draft_game_picks_stddev_samp_order_by + sum: draft_game_picks_sum_order_by + var_pop: draft_game_picks_var_pop_order_by + var_samp: draft_game_picks_var_samp_order_by + variance: draft_game_picks_variance_order_by } """ -unique or primary key constraints on table "e_check_in_settings" +input type for inserting array relation for remote table "draft_game_picks" """ -enum e_check_in_settings_constraint { +input draft_game_picks_arr_rel_insert_input { + data: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_picks_avg_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_picks" +""" +input draft_game_picks_avg_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. +""" +input draft_game_picks_bool_exp { + _and: [draft_game_picks_bool_exp!] + _not: draft_game_picks_bool_exp + _or: [draft_game_picks_bool_exp!] + auto_picked: Boolean_comparison_exp + captain: players_bool_exp + captain_steam_id: bigint_comparison_exp + created_at: timestamptz_comparison_exp + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + id: uuid_comparison_exp + lineup: Int_comparison_exp + picked: players_bool_exp + picked_steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_picks" +""" +enum draft_game_picks_constraint { """ - unique or primary key constraint on columns "value" + unique or primary key constraint on columns "id" """ - e_check_in_settings_pkey + draft_game_picks_pkey } -enum e_check_in_settings_enum { - """Admins Only""" - Admin +""" +input type for incrementing numeric columns in table "draft_game_picks" +""" +input draft_game_picks_inc_input { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} - """Captains Only""" - Captains +""" +input type for inserting data into table "draft_game_picks" +""" +input draft_game_picks_insert_input { + auto_picked: Boolean + captain: players_obj_rel_insert_input + captain_steam_id: bigint + created_at: timestamptz + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + id: uuid + lineup: Int + picked: players_obj_rel_insert_input + picked_steam_id: bigint +} - """All Players""" - Players +"""aggregate max on columns""" +type draft_game_picks_max_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint } """ -Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. +order by max() on columns of table "draft_game_picks" """ -input e_check_in_settings_enum_comparison_exp { - _eq: e_check_in_settings_enum - _in: [e_check_in_settings_enum!] - _is_null: Boolean - _neq: e_check_in_settings_enum - _nin: [e_check_in_settings_enum!] +input draft_game_picks_max_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate min on columns""" +type draft_game_picks_min_fields { + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint } """ -input type for inserting data into table "e_check_in_settings" +order by min() on columns of table "draft_game_picks" """ -input e_check_in_settings_insert_input { - description: String - value: String +input draft_game_picks_min_order_by { + captain_steam_id: order_by + created_at: order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_picks" +""" +type draft_game_picks_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_game_picks!]! +} + +""" +on_conflict condition type for table "draft_game_picks" +""" +input draft_game_picks_on_conflict { + constraint: draft_game_picks_constraint! + update_columns: [draft_game_picks_update_column!]! = [] + where: draft_game_picks_bool_exp +} + +"""Ordering options when selecting data from "draft_game_picks".""" +input draft_game_picks_order_by { + auto_picked: order_by + captain: players_order_by + captain_steam_id: order_by + created_at: order_by + draft_game: draft_games_order_by + draft_game_id: order_by + id: order_by + lineup: order_by + picked: players_order_by + picked_steam_id: order_by +} + +"""primary key columns input for table: draft_game_picks""" +input draft_game_picks_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + auto_picked +} + +""" +select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" +""" +enum draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + auto_picked +} + +""" +input type for updating data in table "draft_game_picks" +""" +input draft_game_picks_set_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_picks_stddev_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_picks_stddev_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_picks_stddev_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_stddev_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_picks" +""" +input draft_game_picks_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_game_picks_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_game_picks_stream_cursor_value_input { + auto_picked: Boolean + captain_steam_id: bigint + created_at: timestamptz + draft_game_id: uuid + id: uuid + lineup: Int + picked_steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_picks_sum_fields { + captain_steam_id: bigint + lineup: Int + picked_steam_id: bigint +} + +""" +order by sum() on columns of table "draft_game_picks" +""" +input draft_game_picks_sum_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +update columns of table "draft_game_picks" +""" +enum draft_game_picks_update_column { + """column name""" + auto_picked + + """column name""" + captain_steam_id + + """column name""" + created_at + + """column name""" + draft_game_id + + """column name""" + id + + """column name""" + lineup + + """column name""" + picked_steam_id +} + +input draft_game_picks_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_picks_var_pop_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_pop_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_picks_var_samp_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_picks" +""" +input draft_game_picks_var_samp_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_picks_variance_fields { + captain_steam_id: Float + lineup: Float + picked_steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_picks" +""" +input draft_game_picks_variance_order_by { + captain_steam_id: order_by + lineup: order_by + picked_steam_id: order_by +} + +""" +columns and relationships of "draft_game_players" +""" +type draft_game_players { + """An object relationship""" + draft_game: draft_games! + draft_game_id: uuid! + + """An object relationship""" + e_draft_game_player_status: e_draft_game_player_status! + elo_snapshot: Int + is_captain: Boolean! + joined_at: timestamptz! + lineup: Int + pick_order: Int + + """An object relationship""" + player: players! + status: e_draft_game_player_status_enum! + steam_id: bigint! +} + +""" +aggregated selection of "draft_game_players" +""" +type draft_game_players_aggregate { + aggregate: draft_game_players_aggregate_fields + nodes: [draft_game_players!]! +} + +input draft_game_players_aggregate_bool_exp { + bool_and: draft_game_players_aggregate_bool_exp_bool_and + bool_or: draft_game_players_aggregate_bool_exp_bool_or + count: draft_game_players_aggregate_bool_exp_count +} + +input draft_game_players_aggregate_bool_exp_bool_and { + arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_players_aggregate_bool_exp_bool_or { + arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_game_players_aggregate_bool_exp_count { + arguments: [draft_game_players_select_column!] + distinct: Boolean + filter: draft_game_players_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_game_players" +""" +type draft_game_players_aggregate_fields { + avg: draft_game_players_avg_fields + count(columns: [draft_game_players_select_column!], distinct: Boolean): Int! + max: draft_game_players_max_fields + min: draft_game_players_min_fields + stddev: draft_game_players_stddev_fields + stddev_pop: draft_game_players_stddev_pop_fields + stddev_samp: draft_game_players_stddev_samp_fields + sum: draft_game_players_sum_fields + var_pop: draft_game_players_var_pop_fields + var_samp: draft_game_players_var_samp_fields + variance: draft_game_players_variance_fields +} + +""" +order by aggregate values of table "draft_game_players" +""" +input draft_game_players_aggregate_order_by { + avg: draft_game_players_avg_order_by + count: order_by + max: draft_game_players_max_order_by + min: draft_game_players_min_order_by + stddev: draft_game_players_stddev_order_by + stddev_pop: draft_game_players_stddev_pop_order_by + stddev_samp: draft_game_players_stddev_samp_order_by + sum: draft_game_players_sum_order_by + var_pop: draft_game_players_var_pop_order_by + var_samp: draft_game_players_var_samp_order_by + variance: draft_game_players_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_game_players" +""" +input draft_game_players_arr_rel_insert_input { + data: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict +} + +"""aggregate avg on columns""" +type draft_game_players_avg_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by avg() on columns of table "draft_game_players" +""" +input draft_game_players_avg_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. +""" +input draft_game_players_bool_exp { + _and: [draft_game_players_bool_exp!] + _not: draft_game_players_bool_exp + _or: [draft_game_players_bool_exp!] + draft_game: draft_games_bool_exp + draft_game_id: uuid_comparison_exp + e_draft_game_player_status: e_draft_game_player_status_bool_exp + elo_snapshot: Int_comparison_exp + is_captain: Boolean_comparison_exp + joined_at: timestamptz_comparison_exp + lineup: Int_comparison_exp + pick_order: Int_comparison_exp + player: players_bool_exp + status: e_draft_game_player_status_enum_comparison_exp + steam_id: bigint_comparison_exp +} + +""" +unique or primary key constraints on table "draft_game_players" +""" +enum draft_game_players_constraint { + """ + unique or primary key constraint on columns "draft_game_id", "steam_id" + """ + draft_game_players_pkey +} + +""" +input type for incrementing numeric columns in table "draft_game_players" +""" +input draft_game_players_inc_input { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +input type for inserting data into table "draft_game_players" +""" +input draft_game_players_insert_input { + draft_game: draft_games_obj_rel_insert_input + draft_game_id: uuid + e_draft_game_player_status: e_draft_game_player_status_obj_rel_insert_input + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + player: players_obj_rel_insert_input + status: e_draft_game_player_status_enum + steam_id: bigint } """aggregate max on columns""" -type e_check_in_settings_max_fields { - description: String - value: String +type draft_game_players_max_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint +} + +""" +order by max() on columns of table "draft_game_players" +""" +input draft_game_players_max_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by } """aggregate min on columns""" -type e_check_in_settings_min_fields { - description: String - value: String +type draft_game_players_min_fields { + draft_game_id: uuid + elo_snapshot: Int + joined_at: timestamptz + lineup: Int + pick_order: Int + steam_id: bigint } """ -response of any mutation on the table "e_check_in_settings" +order by min() on columns of table "draft_game_players" """ -type e_check_in_settings_mutation_response { +input draft_game_players_min_order_by { + draft_game_id: order_by + elo_snapshot: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +response of any mutation on the table "draft_game_players" +""" +type draft_game_players_mutation_response { """number of rows affected by the mutation""" affected_rows: Int! """data from the rows affected by the mutation""" - returning: [e_check_in_settings!]! + returning: [draft_game_players!]! } """ -on_conflict condition type for table "e_check_in_settings" +on_conflict condition type for table "draft_game_players" """ -input e_check_in_settings_on_conflict { - constraint: e_check_in_settings_constraint! - update_columns: [e_check_in_settings_update_column!]! = [] - where: e_check_in_settings_bool_exp +input draft_game_players_on_conflict { + constraint: draft_game_players_constraint! + update_columns: [draft_game_players_update_column!]! = [] + where: draft_game_players_bool_exp } -"""Ordering options when selecting data from "e_check_in_settings".""" -input e_check_in_settings_order_by { - description: order_by - value: order_by +"""Ordering options when selecting data from "draft_game_players".""" +input draft_game_players_order_by { + draft_game: draft_games_order_by + draft_game_id: order_by + e_draft_game_player_status: e_draft_game_player_status_order_by + elo_snapshot: order_by + is_captain: order_by + joined_at: order_by + lineup: order_by + pick_order: order_by + player: players_order_by + status: order_by + steam_id: order_by } -"""primary key columns input for table: e_check_in_settings""" -input e_check_in_settings_pk_columns_input { - value: String! +"""primary key columns input for table: draft_game_players""" +input draft_game_players_pk_columns_input { + draft_game_id: uuid! + steam_id: bigint! } """ -select columns of table "e_check_in_settings" +select columns of table "draft_game_players" """ -enum e_check_in_settings_select_column { +enum draft_game_players_select_column { """column name""" - description + draft_game_id """column name""" - value + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id } """ -input type for updating data in table "e_check_in_settings" +select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" """ -input e_check_in_settings_set_input { - description: String - value: String +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + is_captain } """ -Streaming cursor of the table "e_check_in_settings" +select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" """ -input e_check_in_settings_stream_cursor_input { +enum draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + is_captain +} + +""" +input type for updating data in table "draft_game_players" +""" +input draft_game_players_set_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate stddev on columns""" +type draft_game_players_stddev_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_game_players_stddev_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_pop() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_game_players_stddev_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by stddev_samp() on columns of table "draft_game_players" +""" +input draft_game_players_stddev_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +Streaming cursor of the table "draft_game_players" +""" +input draft_game_players_stream_cursor_input { """Stream column input with initial value""" - initial_value: e_check_in_settings_stream_cursor_value_input! + initial_value: draft_game_players_stream_cursor_value_input! """cursor ordering""" ordering: cursor_ordering } """Initial value of the column from where the streaming should start""" -input e_check_in_settings_stream_cursor_value_input { - description: String - value: String +input draft_game_players_stream_cursor_value_input { + draft_game_id: uuid + elo_snapshot: Int + is_captain: Boolean + joined_at: timestamptz + lineup: Int + pick_order: Int + status: e_draft_game_player_status_enum + steam_id: bigint +} + +"""aggregate sum on columns""" +type draft_game_players_sum_fields { + elo_snapshot: Int + lineup: Int + pick_order: Int + steam_id: bigint } """ -update columns of table "e_check_in_settings" +order by sum() on columns of table "draft_game_players" """ -enum e_check_in_settings_update_column { +input draft_game_players_sum_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +update columns of table "draft_game_players" +""" +enum draft_game_players_update_column { """column name""" - description + draft_game_id """column name""" - value + elo_snapshot + + """column name""" + is_captain + + """column name""" + joined_at + + """column name""" + lineup + + """column name""" + pick_order + + """column name""" + status + + """column name""" + steam_id } -input e_check_in_settings_updates { +input draft_game_players_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + """sets the columns of the filtered rows to the given values""" - _set: e_check_in_settings_set_input + _set: draft_game_players_set_input """filter the rows which have to be updated""" - where: e_check_in_settings_bool_exp! + where: draft_game_players_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_game_players_var_pop_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_pop() on columns of table "draft_game_players" +""" +input draft_game_players_var_pop_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate var_samp on columns""" +type draft_game_players_var_samp_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by var_samp() on columns of table "draft_game_players" +""" +input draft_game_players_var_samp_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +"""aggregate variance on columns""" +type draft_game_players_variance_fields { + elo_snapshot: Float + lineup: Float + pick_order: Float + steam_id: Float +} + +""" +order by variance() on columns of table "draft_game_players" +""" +input draft_game_players_variance_order_by { + elo_snapshot: order_by + lineup: order_by + pick_order: order_by + steam_id: order_by +} + +""" +columns and relationships of "draft_games" +""" +type draft_games { + access: e_lobby_access_enum! + capacity: Int! + captain_selection: e_draft_game_captain_selection_enum! + created_at: timestamptz! + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum! + + """An object relationship""" + e_draft_game_captain_selection: e_draft_game_captain_selection! + + """An object relationship""" + e_draft_game_draft_order: e_draft_game_draft_order! + + """An object relationship""" + e_draft_game_mode: e_draft_game_mode! + + """An object relationship""" + e_draft_game_status: e_draft_game_status! + + """An object relationship""" + e_lobby_access: e_lobby_access! + expires_at: timestamptz + + """An object relationship""" + host: players! + host_steam_id: bigint! + id: uuid! + inner_squad: Boolean! + invite_code: uuid! + + """An object relationship""" + map_pool: map_pools + map_pool_id: uuid + + """An object relationship""" + match: matches + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum! + + """An object relationship""" + options: match_options + pick_deadline: timestamptz + + """An array relationship""" + picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """An aggregate relationship""" + picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """An array relationship""" + players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An aggregate relationship""" + players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + regions: [String!]! + require_approval: Boolean! + status: e_draft_game_status_enum! + + """An object relationship""" + team_1: teams + team_1_id: uuid + + """An object relationship""" + team_2: teams + team_2_id: uuid + type: e_match_types_enum! + updated_at: timestamptz! +} + +""" +aggregated selection of "draft_games" +""" +type draft_games_aggregate { + aggregate: draft_games_aggregate_fields + nodes: [draft_games!]! +} + +input draft_games_aggregate_bool_exp { + bool_and: draft_games_aggregate_bool_exp_bool_and + bool_or: draft_games_aggregate_bool_exp_bool_or + count: draft_games_aggregate_bool_exp_count +} + +input draft_games_aggregate_bool_exp_bool_and { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_bool_or { + arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns! + distinct: Boolean + filter: draft_games_bool_exp + predicate: Boolean_comparison_exp! +} + +input draft_games_aggregate_bool_exp_count { + arguments: [draft_games_select_column!] + distinct: Boolean + filter: draft_games_bool_exp + predicate: Int_comparison_exp! +} + +""" +aggregate fields of "draft_games" +""" +type draft_games_aggregate_fields { + avg: draft_games_avg_fields + count(columns: [draft_games_select_column!], distinct: Boolean): Int! + max: draft_games_max_fields + min: draft_games_min_fields + stddev: draft_games_stddev_fields + stddev_pop: draft_games_stddev_pop_fields + stddev_samp: draft_games_stddev_samp_fields + sum: draft_games_sum_fields + var_pop: draft_games_var_pop_fields + var_samp: draft_games_var_samp_fields + variance: draft_games_variance_fields +} + +""" +order by aggregate values of table "draft_games" +""" +input draft_games_aggregate_order_by { + avg: draft_games_avg_order_by + count: order_by + max: draft_games_max_order_by + min: draft_games_min_order_by + stddev: draft_games_stddev_order_by + stddev_pop: draft_games_stddev_pop_order_by + stddev_samp: draft_games_stddev_samp_order_by + sum: draft_games_sum_order_by + var_pop: draft_games_var_pop_order_by + var_samp: draft_games_var_samp_order_by + variance: draft_games_variance_order_by +} + +""" +input type for inserting array relation for remote table "draft_games" +""" +input draft_games_arr_rel_insert_input { + data: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +"""aggregate avg on columns""" +type draft_games_avg_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by avg() on columns of table "draft_games" +""" +input draft_games_avg_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. +""" +input draft_games_bool_exp { + _and: [draft_games_bool_exp!] + _not: draft_games_bool_exp + _or: [draft_games_bool_exp!] + access: e_lobby_access_enum_comparison_exp + capacity: Int_comparison_exp + captain_selection: e_draft_game_captain_selection_enum_comparison_exp + created_at: timestamptz_comparison_exp + current_pick_lineup: Int_comparison_exp + draft_order: e_draft_game_draft_order_enum_comparison_exp + e_draft_game_captain_selection: e_draft_game_captain_selection_bool_exp + e_draft_game_draft_order: e_draft_game_draft_order_bool_exp + e_draft_game_mode: e_draft_game_mode_bool_exp + e_draft_game_status: e_draft_game_status_bool_exp + e_lobby_access: e_lobby_access_bool_exp + expires_at: timestamptz_comparison_exp + host: players_bool_exp + host_steam_id: bigint_comparison_exp + id: uuid_comparison_exp + inner_squad: Boolean_comparison_exp + invite_code: uuid_comparison_exp + map_pool: map_pools_bool_exp + map_pool_id: uuid_comparison_exp + match: matches_bool_exp + match_id: uuid_comparison_exp + match_options_id: uuid_comparison_exp + max_elo: Int_comparison_exp + min_elo: Int_comparison_exp + mode: e_draft_game_mode_enum_comparison_exp + options: match_options_bool_exp + pick_deadline: timestamptz_comparison_exp + picks: draft_game_picks_bool_exp + picks_aggregate: draft_game_picks_aggregate_bool_exp + players: draft_game_players_bool_exp + players_aggregate: draft_game_players_aggregate_bool_exp + regions: String_array_comparison_exp + require_approval: Boolean_comparison_exp + status: e_draft_game_status_enum_comparison_exp + team_1: teams_bool_exp + team_1_id: uuid_comparison_exp + team_2: teams_bool_exp + team_2_id: uuid_comparison_exp + type: e_match_types_enum_comparison_exp + updated_at: timestamptz_comparison_exp +} + +""" +unique or primary key constraints on table "draft_games" +""" +enum draft_games_constraint { + """ + unique or primary key constraint on columns "id" + """ + draft_games_pkey +} + +""" +input type for incrementing numeric columns in table "draft_games" +""" +input draft_games_inc_input { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +input type for inserting data into table "draft_games" +""" +input draft_games_insert_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + e_draft_game_captain_selection: e_draft_game_captain_selection_obj_rel_insert_input + e_draft_game_draft_order: e_draft_game_draft_order_obj_rel_insert_input + e_draft_game_mode: e_draft_game_mode_obj_rel_insert_input + e_draft_game_status: e_draft_game_status_obj_rel_insert_input + e_lobby_access: e_lobby_access_obj_rel_insert_input + expires_at: timestamptz + host: players_obj_rel_insert_input + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool: map_pools_obj_rel_insert_input + map_pool_id: uuid + match: matches_obj_rel_insert_input + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + options: match_options_obj_rel_insert_input + pick_deadline: timestamptz + picks: draft_game_picks_arr_rel_insert_input + players: draft_game_players_arr_rel_insert_input + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1: teams_obj_rel_insert_input + team_1_id: uuid + team_2: teams_obj_rel_insert_input + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate max on columns""" +type draft_games_max_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by max() on columns of table "draft_games" +""" +input draft_games_max_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +"""aggregate min on columns""" +type draft_games_min_fields { + capacity: Int + created_at: timestamptz + current_pick_lineup: Int + expires_at: timestamptz + host_steam_id: bigint + id: uuid + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + pick_deadline: timestamptz + regions: [String!] + team_1_id: uuid + team_2_id: uuid + updated_at: timestamptz +} + +""" +order by min() on columns of table "draft_games" +""" +input draft_games_min_order_by { + capacity: order_by + created_at: order_by + current_pick_lineup: order_by + expires_at: order_by + host_steam_id: order_by + id: order_by + invite_code: order_by + map_pool_id: order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + pick_deadline: order_by + regions: order_by + team_1_id: order_by + team_2_id: order_by + updated_at: order_by +} + +""" +response of any mutation on the table "draft_games" +""" +type draft_games_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [draft_games!]! +} + +""" +input type for inserting object relation for remote table "draft_games" +""" +input draft_games_obj_rel_insert_input { + data: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict +} + +""" +on_conflict condition type for table "draft_games" +""" +input draft_games_on_conflict { + constraint: draft_games_constraint! + update_columns: [draft_games_update_column!]! = [] + where: draft_games_bool_exp +} + +"""Ordering options when selecting data from "draft_games".""" +input draft_games_order_by { + access: order_by + capacity: order_by + captain_selection: order_by + created_at: order_by + current_pick_lineup: order_by + draft_order: order_by + e_draft_game_captain_selection: e_draft_game_captain_selection_order_by + e_draft_game_draft_order: e_draft_game_draft_order_order_by + e_draft_game_mode: e_draft_game_mode_order_by + e_draft_game_status: e_draft_game_status_order_by + e_lobby_access: e_lobby_access_order_by + expires_at: order_by + host: players_order_by + host_steam_id: order_by + id: order_by + inner_squad: order_by + invite_code: order_by + map_pool: map_pools_order_by + map_pool_id: order_by + match: matches_order_by + match_id: order_by + match_options_id: order_by + max_elo: order_by + min_elo: order_by + mode: order_by + options: match_options_order_by + pick_deadline: order_by + picks_aggregate: draft_game_picks_aggregate_order_by + players_aggregate: draft_game_players_aggregate_order_by + regions: order_by + require_approval: order_by + status: order_by + team_1: teams_order_by + team_1_id: order_by + team_2: teams_order_by + team_2_id: order_by + type: order_by + updated_at: order_by +} + +"""primary key columns input for table: draft_games""" +input draft_games_pk_columns_input { + id: uuid! +} + +""" +select columns of table "draft_games" +""" +enum draft_games_select_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +""" +select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" +""" +enum draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns { + """column name""" + inner_squad + + """column name""" + require_approval +} + +""" +input type for updating data in table "draft_games" +""" +input draft_games_set_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate stddev on columns""" +type draft_games_stddev_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev() on columns of table "draft_games" +""" +input draft_games_stddev_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_pop on columns""" +type draft_games_stddev_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_pop() on columns of table "draft_games" +""" +input draft_games_stddev_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate stddev_samp on columns""" +type draft_games_stddev_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by stddev_samp() on columns of table "draft_games" +""" +input draft_games_stddev_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +Streaming cursor of the table "draft_games" +""" +input draft_games_stream_cursor_input { + """Stream column input with initial value""" + initial_value: draft_games_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input draft_games_stream_cursor_value_input { + access: e_lobby_access_enum + capacity: Int + captain_selection: e_draft_game_captain_selection_enum + created_at: timestamptz + current_pick_lineup: Int + draft_order: e_draft_game_draft_order_enum + expires_at: timestamptz + host_steam_id: bigint + id: uuid + inner_squad: Boolean + invite_code: uuid + map_pool_id: uuid + match_id: uuid + match_options_id: uuid + max_elo: Int + min_elo: Int + mode: e_draft_game_mode_enum + pick_deadline: timestamptz + regions: [String!] + require_approval: Boolean + status: e_draft_game_status_enum + team_1_id: uuid + team_2_id: uuid + type: e_match_types_enum + updated_at: timestamptz +} + +"""aggregate sum on columns""" +type draft_games_sum_fields { + capacity: Int + current_pick_lineup: Int + host_steam_id: bigint + max_elo: Int + min_elo: Int +} + +""" +order by sum() on columns of table "draft_games" +""" +input draft_games_sum_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +update columns of table "draft_games" +""" +enum draft_games_update_column { + """column name""" + access + + """column name""" + capacity + + """column name""" + captain_selection + + """column name""" + created_at + + """column name""" + current_pick_lineup + + """column name""" + draft_order + + """column name""" + expires_at + + """column name""" + host_steam_id + + """column name""" + id + + """column name""" + inner_squad + + """column name""" + invite_code + + """column name""" + map_pool_id + + """column name""" + match_id + + """column name""" + match_options_id + + """column name""" + max_elo + + """column name""" + min_elo + + """column name""" + mode + + """column name""" + pick_deadline + + """column name""" + regions + + """column name""" + require_approval + + """column name""" + status + + """column name""" + team_1_id + + """column name""" + team_2_id + + """column name""" + type + + """column name""" + updated_at +} + +input draft_games_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! +} + +"""aggregate var_pop on columns""" +type draft_games_var_pop_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_pop() on columns of table "draft_games" +""" +input draft_games_var_pop_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate var_samp on columns""" +type draft_games_var_samp_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by var_samp() on columns of table "draft_games" +""" +input draft_games_var_samp_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +"""aggregate variance on columns""" +type draft_games_variance_fields { + capacity: Float + current_pick_lineup: Float + host_steam_id: Float + max_elo: Float + min_elo: Float +} + +""" +order by variance() on columns of table "draft_games" +""" +input draft_games_variance_order_by { + capacity: order_by + current_pick_lineup: order_by + host_steam_id: order_by + max_elo: order_by + min_elo: order_by +} + +""" +columns and relationships of "e_check_in_settings" +""" +type e_check_in_settings { + description: String! + value: String! +} + +""" +aggregated selection of "e_check_in_settings" +""" +type e_check_in_settings_aggregate { + aggregate: e_check_in_settings_aggregate_fields + nodes: [e_check_in_settings!]! +} + +""" +aggregate fields of "e_check_in_settings" +""" +type e_check_in_settings_aggregate_fields { + count(columns: [e_check_in_settings_select_column!], distinct: Boolean): Int! + max: e_check_in_settings_max_fields + min: e_check_in_settings_min_fields +} + +""" +Boolean expression to filter rows from the table "e_check_in_settings". All fields are combined with a logical 'AND'. +""" +input e_check_in_settings_bool_exp { + _and: [e_check_in_settings_bool_exp!] + _not: e_check_in_settings_bool_exp + _or: [e_check_in_settings_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_check_in_settings" +""" +enum e_check_in_settings_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_check_in_settings_pkey +} + +enum e_check_in_settings_enum { + """Admins Only""" + Admin + + """Captains Only""" + Captains + + """All Players""" + Players +} + +""" +Boolean expression to compare columns of type "e_check_in_settings_enum". All fields are combined with logical 'AND'. +""" +input e_check_in_settings_enum_comparison_exp { + _eq: e_check_in_settings_enum + _in: [e_check_in_settings_enum!] + _is_null: Boolean + _neq: e_check_in_settings_enum + _nin: [e_check_in_settings_enum!] +} + +""" +input type for inserting data into table "e_check_in_settings" +""" +input e_check_in_settings_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_check_in_settings_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_check_in_settings_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_check_in_settings" +""" +type e_check_in_settings_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_check_in_settings!]! +} + +""" +on_conflict condition type for table "e_check_in_settings" +""" +input e_check_in_settings_on_conflict { + constraint: e_check_in_settings_constraint! + update_columns: [e_check_in_settings_update_column!]! = [] + where: e_check_in_settings_bool_exp +} + +"""Ordering options when selecting data from "e_check_in_settings".""" +input e_check_in_settings_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_check_in_settings""" +input e_check_in_settings_pk_columns_input { + value: String! +} + +""" +select columns of table "e_check_in_settings" +""" +enum e_check_in_settings_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_check_in_settings" +""" +input e_check_in_settings_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_check_in_settings" +""" +input e_check_in_settings_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_check_in_settings_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_check_in_settings_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_check_in_settings" +""" +enum e_check_in_settings_update_column { + """column name""" + description + + """column name""" + value +} + +input e_check_in_settings_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_check_in_settings_set_input + + """filter the rows which have to be updated""" + where: e_check_in_settings_bool_exp! +} + +""" +columns and relationships of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate { + aggregate: e_draft_game_captain_selection_aggregate_fields + nodes: [e_draft_game_captain_selection!]! +} + +""" +aggregate fields of "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_aggregate_fields { + count(columns: [e_draft_game_captain_selection_select_column!], distinct: Boolean): Int! + max: e_draft_game_captain_selection_max_fields + min: e_draft_game_captain_selection_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. +""" +input e_draft_game_captain_selection_bool_exp { + _and: [e_draft_game_captain_selection_bool_exp!] + _not: e_draft_game_captain_selection_bool_exp + _or: [e_draft_game_captain_selection_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_captain_selection_pkey +} + +enum e_draft_game_captain_selection_enum { + """Host and Next Highest""" + HostAndNext + + """Random Two""" + RandomTwo + + """Top 2 by Rank""" + TopEloTwo +} + +""" +Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_captain_selection_enum_comparison_exp { + _eq: e_draft_game_captain_selection_enum + _in: [e_draft_game_captain_selection_enum!] + _is_null: Boolean + _neq: e_draft_game_captain_selection_enum + _nin: [e_draft_game_captain_selection_enum!] +} + +""" +input type for inserting data into table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_captain_selection_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_captain_selection_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_captain_selection" +""" +type e_draft_game_captain_selection_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_captain_selection!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_obj_rel_insert_input { + data: e_draft_game_captain_selection_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_on_conflict { + constraint: e_draft_game_captain_selection_constraint! + update_columns: [e_draft_game_captain_selection_update_column!]! = [] + where: e_draft_game_captain_selection_bool_exp +} + +""" +Ordering options when selecting data from "e_draft_game_captain_selection". +""" +input e_draft_game_captain_selection_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_captain_selection""" +input e_draft_game_captain_selection_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_captain_selection" +""" +input e_draft_game_captain_selection_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_captain_selection_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_captain_selection_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_captain_selection" +""" +enum e_draft_game_captain_selection_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_captain_selection_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_captain_selection_bool_exp! +} + +""" +columns and relationships of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate { + aggregate: e_draft_game_draft_order_aggregate_fields + nodes: [e_draft_game_draft_order!]! +} + +""" +aggregate fields of "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_aggregate_fields { + count(columns: [e_draft_game_draft_order_select_column!], distinct: Boolean): Int! + max: e_draft_game_draft_order_max_fields + min: e_draft_game_draft_order_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. +""" +input e_draft_game_draft_order_bool_exp { + _and: [e_draft_game_draft_order_bool_exp!] + _not: e_draft_game_draft_order_bool_exp + _or: [e_draft_game_draft_order_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_draft_order_pkey +} + +enum e_draft_game_draft_order_enum { + """Alternating""" + Alternating + + """Snake (1-2-2-2-1)""" + Snake +} + +""" +Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_draft_order_enum_comparison_exp { + _eq: e_draft_game_draft_order_enum + _in: [e_draft_game_draft_order_enum!] + _is_null: Boolean + _neq: e_draft_game_draft_order_enum + _nin: [e_draft_game_draft_order_enum!] +} + +""" +input type for inserting data into table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_draft_order_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_draft_order_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_draft_order" +""" +type e_draft_game_draft_order_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_draft_order!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_obj_rel_insert_input { + data: e_draft_game_draft_order_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_on_conflict { + constraint: e_draft_game_draft_order_constraint! + update_columns: [e_draft_game_draft_order_update_column!]! = [] + where: e_draft_game_draft_order_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_draft_order".""" +input e_draft_game_draft_order_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_draft_order""" +input e_draft_game_draft_order_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_draft_order" +""" +input e_draft_game_draft_order_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_draft_order_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_draft_order_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_draft_order" +""" +enum e_draft_game_draft_order_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_draft_order_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! +} + +""" +columns and relationships of "e_draft_game_mode" +""" +type e_draft_game_mode { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate { + aggregate: e_draft_game_mode_aggregate_fields + nodes: [e_draft_game_mode!]! +} + +""" +aggregate fields of "e_draft_game_mode" +""" +type e_draft_game_mode_aggregate_fields { + count(columns: [e_draft_game_mode_select_column!], distinct: Boolean): Int! + max: e_draft_game_mode_max_fields + min: e_draft_game_mode_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. +""" +input e_draft_game_mode_bool_exp { + _and: [e_draft_game_mode_bool_exp!] + _not: e_draft_game_mode_bool_exp + _or: [e_draft_game_mode_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_mode" +""" +enum e_draft_game_mode_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_mode_pkey +} + +enum e_draft_game_mode_enum { + """Two Captains Draft""" + Captains + + """Host Assigns Teams""" + Host + + """Auto-Split Teams""" + Pug + + """Pre-Made Teams""" + Teams +} + +""" +Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_mode_enum_comparison_exp { + _eq: e_draft_game_mode_enum + _in: [e_draft_game_mode_enum!] + _is_null: Boolean + _neq: e_draft_game_mode_enum + _nin: [e_draft_game_mode_enum!] +} + +""" +input type for inserting data into table "e_draft_game_mode" +""" +input e_draft_game_mode_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_mode_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_mode_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_mode" +""" +type e_draft_game_mode_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_mode!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_mode" +""" +input e_draft_game_mode_obj_rel_insert_input { + data: e_draft_game_mode_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_mode" +""" +input e_draft_game_mode_on_conflict { + constraint: e_draft_game_mode_constraint! + update_columns: [e_draft_game_mode_update_column!]! = [] + where: e_draft_game_mode_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_mode".""" +input e_draft_game_mode_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_mode""" +input e_draft_game_mode_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_mode" +""" +input e_draft_game_mode_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_mode" +""" +input e_draft_game_mode_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_mode_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_mode_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_mode" +""" +enum e_draft_game_mode_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_mode_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! +} + +""" +columns and relationships of "e_draft_game_player_status" +""" +type e_draft_game_player_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_player_status" +""" +type e_draft_game_player_status_aggregate { + aggregate: e_draft_game_player_status_aggregate_fields + nodes: [e_draft_game_player_status!]! +} + +""" +aggregate fields of "e_draft_game_player_status" +""" +type e_draft_game_player_status_aggregate_fields { + count(columns: [e_draft_game_player_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_player_status_max_fields + min: e_draft_game_player_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. +""" +input e_draft_game_player_status_bool_exp { + _and: [e_draft_game_player_status_bool_exp!] + _not: e_draft_game_player_status_bool_exp + _or: [e_draft_game_player_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_player_status_pkey +} + +enum e_draft_game_player_status_enum { + """Player Accepted Into Game""" + Accepted + + """Player Requested To Join""" + Requested + + """Player On Waitlist""" + Waitlist +} + +""" +Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_player_status_enum_comparison_exp { + _eq: e_draft_game_player_status_enum + _in: [e_draft_game_player_status_enum!] + _is_null: Boolean + _neq: e_draft_game_player_status_enum + _nin: [e_draft_game_player_status_enum!] +} + +""" +input type for inserting data into table "e_draft_game_player_status" +""" +input e_draft_game_player_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_player_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_player_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_player_status" +""" +type e_draft_game_player_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_player_status!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_player_status" +""" +input e_draft_game_player_status_obj_rel_insert_input { + data: e_draft_game_player_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_player_status" +""" +input e_draft_game_player_status_on_conflict { + constraint: e_draft_game_player_status_constraint! + update_columns: [e_draft_game_player_status_update_column!]! = [] + where: e_draft_game_player_status_bool_exp +} + +""" +Ordering options when selecting data from "e_draft_game_player_status". +""" +input e_draft_game_player_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_player_status""" +input e_draft_game_player_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_player_status" +""" +input e_draft_game_player_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_player_status" +""" +input e_draft_game_player_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_player_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_player_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_player_status" +""" +enum e_draft_game_player_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_player_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_player_status_bool_exp! +} + +""" +columns and relationships of "e_draft_game_status" +""" +type e_draft_game_status { + description: String! + value: String! +} + +""" +aggregated selection of "e_draft_game_status" +""" +type e_draft_game_status_aggregate { + aggregate: e_draft_game_status_aggregate_fields + nodes: [e_draft_game_status!]! +} + +""" +aggregate fields of "e_draft_game_status" +""" +type e_draft_game_status_aggregate_fields { + count(columns: [e_draft_game_status_select_column!], distinct: Boolean): Int! + max: e_draft_game_status_max_fields + min: e_draft_game_status_min_fields +} + +""" +Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. +""" +input e_draft_game_status_bool_exp { + _and: [e_draft_game_status_bool_exp!] + _not: e_draft_game_status_bool_exp + _or: [e_draft_game_status_bool_exp!] + description: String_comparison_exp + value: String_comparison_exp +} + +""" +unique or primary key constraints on table "e_draft_game_status" +""" +enum e_draft_game_status_constraint { + """ + unique or primary key constraint on columns "value" + """ + e_draft_game_status_pkey +} + +enum e_draft_game_status_enum { + """Canceled""" + Canceled + + """Completed""" + Completed + + """Creating Match""" + CreatingMatch + + """Drafting Players""" + Drafting + + """Lobby Full""" + Filled + + """Accepting Players""" + Open + + """Selecting Captains""" + SelectingCaptains +} + +""" +Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. +""" +input e_draft_game_status_enum_comparison_exp { + _eq: e_draft_game_status_enum + _in: [e_draft_game_status_enum!] + _is_null: Boolean + _neq: e_draft_game_status_enum + _nin: [e_draft_game_status_enum!] +} + +""" +input type for inserting data into table "e_draft_game_status" +""" +input e_draft_game_status_insert_input { + description: String + value: String +} + +"""aggregate max on columns""" +type e_draft_game_status_max_fields { + description: String + value: String +} + +"""aggregate min on columns""" +type e_draft_game_status_min_fields { + description: String + value: String +} + +""" +response of any mutation on the table "e_draft_game_status" +""" +type e_draft_game_status_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [e_draft_game_status!]! +} + +""" +input type for inserting object relation for remote table "e_draft_game_status" +""" +input e_draft_game_status_obj_rel_insert_input { + data: e_draft_game_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict +} + +""" +on_conflict condition type for table "e_draft_game_status" +""" +input e_draft_game_status_on_conflict { + constraint: e_draft_game_status_constraint! + update_columns: [e_draft_game_status_update_column!]! = [] + where: e_draft_game_status_bool_exp +} + +"""Ordering options when selecting data from "e_draft_game_status".""" +input e_draft_game_status_order_by { + description: order_by + value: order_by +} + +"""primary key columns input for table: e_draft_game_status""" +input e_draft_game_status_pk_columns_input { + value: String! +} + +""" +select columns of table "e_draft_game_status" +""" +enum e_draft_game_status_select_column { + """column name""" + description + + """column name""" + value +} + +""" +input type for updating data in table "e_draft_game_status" +""" +input e_draft_game_status_set_input { + description: String + value: String +} + +""" +Streaming cursor of the table "e_draft_game_status" +""" +input e_draft_game_status_stream_cursor_input { + """Stream column input with initial value""" + initial_value: e_draft_game_status_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input e_draft_game_status_stream_cursor_value_input { + description: String + value: String +} + +""" +update columns of table "e_draft_game_status" +""" +enum e_draft_game_status_update_column { + """column name""" + description + + """column name""" + value +} + +input e_draft_game_status_updates { + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! } """ @@ -19705,6 +22552,42 @@ type matches { where: match_map_demos_bool_exp ): match_map_demos_aggregate! + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + """An object relationship""" e_match_status: e_match_status! @@ -20514,6 +23397,8 @@ input matches_bool_exp { current_match_map_id: uuid_comparison_exp demos: match_map_demos_bool_exp demos_aggregate: match_map_demos_aggregate_bool_exp + draft_games: draft_games_bool_exp + draft_games_aggregate: draft_games_aggregate_bool_exp e_match_status: e_match_status_bool_exp e_region: server_regions_bool_exp effective_at: timestamptz_comparison_exp @@ -20637,6 +23522,7 @@ input matches_insert_input { clutches: v_match_clutches_arr_rel_insert_input created_at: timestamptz demos: match_map_demos_arr_rel_insert_input + draft_games: draft_games_arr_rel_insert_input e_match_status: e_match_status_obj_rel_insert_input e_region: server_regions_obj_rel_insert_input elo_changes: v_player_elo_arr_rel_insert_input @@ -20942,6 +23828,7 @@ input matches_order_by { created_at: order_by current_match_map_id: order_by demos_aggregate: match_map_demos_aggregate_order_by + draft_games_aggregate: draft_games_aggregate_order_by e_match_status: e_match_status_order_by e_region: server_regions_order_by effective_at: order_by @@ -21570,6 +24457,9 @@ type mutation_root { createClipRender(spec: ClipSpecInput!): CreateClipRenderOutput createClips(match_id: uuid!): SuccessOutput + """createDraftGame""" + createDraftGame(settings: jsonb!): CreateDraftGameOutput + """Create directory on game server""" createServerDirectory(dir_path: String!, node_id: String!, server_id: String): SuccessOutput @@ -21653,6 +24543,45 @@ type mutation_root { """ delete_db_backups_by_pk(id: uuid!): db_backups + """ + delete data from the table: "draft_game_picks" + """ + delete_draft_game_picks( + """filter the rows which have to be deleted""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + delete single row from the table: "draft_game_picks" + """ + delete_draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + delete data from the table: "draft_game_players" + """ + delete_draft_game_players( + """filter the rows which have to be deleted""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + delete single row from the table: "draft_game_players" + """ + delete_draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + delete data from the table: "draft_games" + """ + delete_draft_games( + """filter the rows which have to be deleted""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + delete single row from the table: "draft_games" + """ + delete_draft_games_by_pk(id: uuid!): draft_games + """ delete data from the table: "e_check_in_settings" """ @@ -21666,6 +24595,71 @@ type mutation_root { """ delete_e_check_in_settings_by_pk(value: String!): e_check_in_settings + """ + delete data from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection( + """filter the rows which have to be deleted""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + delete single row from the table: "e_draft_game_captain_selection" + """ + delete_e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + delete data from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order( + """filter the rows which have to be deleted""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + delete single row from the table: "e_draft_game_draft_order" + """ + delete_e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + delete data from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode( + """filter the rows which have to be deleted""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + delete single row from the table: "e_draft_game_mode" + """ + delete_e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + delete data from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status( + """filter the rows which have to be deleted""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + delete single row from the table: "e_draft_game_player_status" + """ + delete_e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + delete data from the table: "e_draft_game_status" + """ + delete_e_draft_game_status( + """filter the rows which have to be deleted""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + delete single row from the table: "e_draft_game_status" + """ + delete_e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ delete data from the table: "e_friend_status" """ @@ -22319,6 +25313,19 @@ type mutation_root { where: my_friends_bool_exp! ): my_friends_mutation_response + """ + delete data from the table: "news_articles" + """ + delete_news_articles( + """filter the rows which have to be deleted""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + delete single row from the table: "news_articles" + """ + delete_news_articles_by_pk(id: uuid!): news_articles + """ delete data from the table: "notifications" """ @@ -22879,6 +25886,9 @@ type mutation_root { """ delete_v_team_stage_results_by_pk(tournament_stage_id: uuid!, tournament_team_id: uuid!): v_team_stage_results denyInvite(invite_id: uuid!, type: String!): SuccessOutput + + """extendDraftGame""" + extendDraftGame(draftGameId: uuid!): SuccessOutput forfeitMatch(match_id: uuid!, winning_lineup_id: uuid!): SuccessOutput """ @@ -22997,6 +26007,72 @@ type mutation_root { on_conflict: db_backups_on_conflict ): db_backups + """ + insert data into the table: "draft_game_picks" + """ + insert_draft_game_picks( + """the rows to be inserted""" + objects: [draft_game_picks_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks_mutation_response + + """ + insert a single row into the table: "draft_game_picks" + """ + insert_draft_game_picks_one( + """the row to be inserted""" + object: draft_game_picks_insert_input! + + """upsert condition""" + on_conflict: draft_game_picks_on_conflict + ): draft_game_picks + + """ + insert data into the table: "draft_game_players" + """ + insert_draft_game_players( + """the rows to be inserted""" + objects: [draft_game_players_insert_input!]! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players_mutation_response + + """ + insert a single row into the table: "draft_game_players" + """ + insert_draft_game_players_one( + """the row to be inserted""" + object: draft_game_players_insert_input! + + """upsert condition""" + on_conflict: draft_game_players_on_conflict + ): draft_game_players + + """ + insert data into the table: "draft_games" + """ + insert_draft_games( + """the rows to be inserted""" + objects: [draft_games_insert_input!]! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games_mutation_response + + """ + insert a single row into the table: "draft_games" + """ + insert_draft_games_one( + """the row to be inserted""" + object: draft_games_insert_input! + + """upsert condition""" + on_conflict: draft_games_on_conflict + ): draft_games + """ insert data into the table: "e_check_in_settings" """ @@ -23019,6 +26095,116 @@ type mutation_root { on_conflict: e_check_in_settings_on_conflict ): e_check_in_settings + """ + insert data into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection( + """the rows to be inserted""" + objects: [e_draft_game_captain_selection_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection_mutation_response + + """ + insert a single row into the table: "e_draft_game_captain_selection" + """ + insert_e_draft_game_captain_selection_one( + """the row to be inserted""" + object: e_draft_game_captain_selection_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_captain_selection_on_conflict + ): e_draft_game_captain_selection + + """ + insert data into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order( + """the rows to be inserted""" + objects: [e_draft_game_draft_order_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order_mutation_response + + """ + insert a single row into the table: "e_draft_game_draft_order" + """ + insert_e_draft_game_draft_order_one( + """the row to be inserted""" + object: e_draft_game_draft_order_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_draft_order_on_conflict + ): e_draft_game_draft_order + + """ + insert data into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode( + """the rows to be inserted""" + objects: [e_draft_game_mode_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode_mutation_response + + """ + insert a single row into the table: "e_draft_game_mode" + """ + insert_e_draft_game_mode_one( + """the row to be inserted""" + object: e_draft_game_mode_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_mode_on_conflict + ): e_draft_game_mode + + """ + insert data into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status( + """the rows to be inserted""" + objects: [e_draft_game_player_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_player_status" + """ + insert_e_draft_game_player_status_one( + """the row to be inserted""" + object: e_draft_game_player_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_player_status_on_conflict + ): e_draft_game_player_status + + """ + insert data into the table: "e_draft_game_status" + """ + insert_e_draft_game_status( + """the rows to be inserted""" + objects: [e_draft_game_status_insert_input!]! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status_mutation_response + + """ + insert a single row into the table: "e_draft_game_status" + """ + insert_e_draft_game_status_one( + """the row to be inserted""" + object: e_draft_game_status_insert_input! + + """upsert condition""" + on_conflict: e_draft_game_status_on_conflict + ): e_draft_game_status + """ insert data into the table: "e_friend_status" """ @@ -24129,6 +27315,28 @@ type mutation_root { object: my_friends_insert_input! ): my_friends + """ + insert data into the table: "news_articles" + """ + insert_news_articles( + """the rows to be inserted""" + objects: [news_articles_insert_input!]! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles_mutation_response + + """ + insert a single row into the table: "news_articles" + """ + insert_news_articles_one( + """the row to be inserted""" + object: news_articles_insert_input! + + """upsert condition""" + on_conflict: news_articles_on_conflict + ): news_articles + """ insert data into the table: "notifications" """ @@ -25088,6 +28296,12 @@ type mutation_root { """upsert condition""" on_conflict: v_team_stage_results_on_conflict ): v_team_stage_results + + """joinDraftGame""" + joinDraftGame(draftGameId: uuid!, inviteCode: String): SuccessOutput + + """joinDraftGameAsParty""" + joinDraftGameAsParty(draftGameId: uuid!, inviteCode: String): SuccessOutput joinLineup(code: String, lineup_id: String!, match_id: String!): SuccessOutput kickServerPlayer(reason: String, serverId: String!, steam_id: String!): KickResult! leaveLineup(match_id: String!): SuccessOutput @@ -25177,6 +28391,11 @@ type mutation_root { Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). """ requeueClipRender(job_id: uuid!): SuccessOutput + + """ + Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. + """ + rescanTldrNews: SuccessOutput restartService(service: String!): SuccessOutput """Clear paused flag and re-enqueue remaining queued clip_render_jobs.""" @@ -25240,6 +28459,9 @@ type mutation_root { """Owner-only patch for clip title / visibility / target_steam_id.""" updateClip(clip_id: uuid!, target_steam_id: String, title: String, visibility: String): SuccessOutput updateCs(game: String, game_server_node_id: uuid): SuccessOutput + + """updateDraftGame""" + updateDraftGame(draftGameId: uuid!, settings: jsonb!): SuccessOutput updateServices: SuccessOutput """ @@ -25448,6 +28670,108 @@ type mutation_root { updates: [db_backups_updates!]! ): [db_backups_mutation_response] + """ + update data of the table: "draft_game_picks" + """ + update_draft_game_picks( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + + """filter the rows which have to be updated""" + where: draft_game_picks_bool_exp! + ): draft_game_picks_mutation_response + + """ + update single row of the table: "draft_game_picks" + """ + update_draft_game_picks_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_picks_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_picks_set_input + pk_columns: draft_game_picks_pk_columns_input! + ): draft_game_picks + + """ + update multiples rows of table: "draft_game_picks" + """ + update_draft_game_picks_many( + """updates to execute, in order""" + updates: [draft_game_picks_updates!]! + ): [draft_game_picks_mutation_response] + + """ + update data of the table: "draft_game_players" + """ + update_draft_game_players( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + + """filter the rows which have to be updated""" + where: draft_game_players_bool_exp! + ): draft_game_players_mutation_response + + """ + update single row of the table: "draft_game_players" + """ + update_draft_game_players_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_game_players_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_game_players_set_input + pk_columns: draft_game_players_pk_columns_input! + ): draft_game_players + + """ + update multiples rows of table: "draft_game_players" + """ + update_draft_game_players_many( + """updates to execute, in order""" + updates: [draft_game_players_updates!]! + ): [draft_game_players_mutation_response] + + """ + update data of the table: "draft_games" + """ + update_draft_games( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + + """filter the rows which have to be updated""" + where: draft_games_bool_exp! + ): draft_games_mutation_response + + """ + update single row of the table: "draft_games" + """ + update_draft_games_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: draft_games_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: draft_games_set_input + pk_columns: draft_games_pk_columns_input! + ): draft_games + + """ + update multiples rows of table: "draft_games" + """ + update_draft_games_many( + """updates to execute, in order""" + updates: [draft_games_updates!]! + ): [draft_games_mutation_response] + """ update data of the table: "e_check_in_settings" """ @@ -25476,6 +28800,146 @@ type mutation_root { updates: [e_check_in_settings_updates!]! ): [e_check_in_settings_mutation_response] + """ + update data of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_captain_selection_bool_exp! + ): e_draft_game_captain_selection_mutation_response + + """ + update single row of the table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_captain_selection_set_input + pk_columns: e_draft_game_captain_selection_pk_columns_input! + ): e_draft_game_captain_selection + + """ + update multiples rows of table: "e_draft_game_captain_selection" + """ + update_e_draft_game_captain_selection_many( + """updates to execute, in order""" + updates: [e_draft_game_captain_selection_updates!]! + ): [e_draft_game_captain_selection_mutation_response] + + """ + update data of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_draft_order_bool_exp! + ): e_draft_game_draft_order_mutation_response + + """ + update single row of the table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_draft_order_set_input + pk_columns: e_draft_game_draft_order_pk_columns_input! + ): e_draft_game_draft_order + + """ + update multiples rows of table: "e_draft_game_draft_order" + """ + update_e_draft_game_draft_order_many( + """updates to execute, in order""" + updates: [e_draft_game_draft_order_updates!]! + ): [e_draft_game_draft_order_mutation_response] + + """ + update data of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_mode_bool_exp! + ): e_draft_game_mode_mutation_response + + """ + update single row of the table: "e_draft_game_mode" + """ + update_e_draft_game_mode_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_mode_set_input + pk_columns: e_draft_game_mode_pk_columns_input! + ): e_draft_game_mode + + """ + update multiples rows of table: "e_draft_game_mode" + """ + update_e_draft_game_mode_many( + """updates to execute, in order""" + updates: [e_draft_game_mode_updates!]! + ): [e_draft_game_mode_mutation_response] + + """ + update data of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_player_status_bool_exp! + ): e_draft_game_player_status_mutation_response + + """ + update single row of the table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_player_status_set_input + pk_columns: e_draft_game_player_status_pk_columns_input! + ): e_draft_game_player_status + + """ + update multiples rows of table: "e_draft_game_player_status" + """ + update_e_draft_game_player_status_many( + """updates to execute, in order""" + updates: [e_draft_game_player_status_updates!]! + ): [e_draft_game_player_status_mutation_response] + + """ + update data of the table: "e_draft_game_status" + """ + update_e_draft_game_status( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + + """filter the rows which have to be updated""" + where: e_draft_game_status_bool_exp! + ): e_draft_game_status_mutation_response + + """ + update single row of the table: "e_draft_game_status" + """ + update_e_draft_game_status_by_pk( + """sets the columns of the filtered rows to the given values""" + _set: e_draft_game_status_set_input + pk_columns: e_draft_game_status_pk_columns_input! + ): e_draft_game_status + + """ + update multiples rows of table: "e_draft_game_status" + """ + update_e_draft_game_status_many( + """updates to execute, in order""" + updates: [e_draft_game_status_updates!]! + ): [e_draft_game_status_mutation_response] + """ update data of the table: "e_friend_status" """ @@ -27261,6 +30725,40 @@ type mutation_root { updates: [my_friends_updates!]! ): [my_friends_mutation_response] + """ + update data of the table: "news_articles" + """ + update_news_articles( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! + ): news_articles_mutation_response + + """ + update single row of the table: "news_articles" + """ + update_news_articles_by_pk( + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + pk_columns: news_articles_pk_columns_input! + ): news_articles + + """ + update multiples rows of table: "news_articles" + """ + update_news_articles_many( + """updates to execute, in order""" + updates: [news_articles_updates!]! + ): [news_articles_mutation_response] + """ update data of the table: "notifications" """ @@ -29372,6 +32870,389 @@ input my_friends_variance_order_by { steam_id: order_by } +""" +columns and relationships of "news_articles" +""" +type news_articles { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz! + id: uuid! + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz! + slug: String + source: String! + teaser: String + title: String! + updated_at: timestamptz! + url: String! +} + +""" +aggregated selection of "news_articles" +""" +type news_articles_aggregate { + aggregate: news_articles_aggregate_fields + nodes: [news_articles!]! +} + +""" +aggregate fields of "news_articles" +""" +type news_articles_aggregate_fields { + avg: news_articles_avg_fields + count(columns: [news_articles_select_column!], distinct: Boolean): Int! + max: news_articles_max_fields + min: news_articles_min_fields + stddev: news_articles_stddev_fields + stddev_pop: news_articles_stddev_pop_fields + stddev_samp: news_articles_stddev_samp_fields + sum: news_articles_sum_fields + var_pop: news_articles_var_pop_fields + var_samp: news_articles_var_samp_fields + variance: news_articles_variance_fields +} + +"""aggregate avg on columns""" +type news_articles_avg_fields { + issue_number: Float +} + +""" +Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. +""" +input news_articles_bool_exp { + _and: [news_articles_bool_exp!] + _not: news_articles_bool_exp + _or: [news_articles_bool_exp!] + author: String_comparison_exp + content_html: String_comparison_exp + cover_image_url: String_comparison_exp + created_at: timestamptz_comparison_exp + id: uuid_comparison_exp + issue_number: Int_comparison_exp + published_at: timestamptz_comparison_exp + scraped_at: timestamptz_comparison_exp + slug: String_comparison_exp + source: String_comparison_exp + teaser: String_comparison_exp + title: String_comparison_exp + updated_at: timestamptz_comparison_exp + url: String_comparison_exp +} + +""" +unique or primary key constraints on table "news_articles" +""" +enum news_articles_constraint { + """ + unique or primary key constraint on columns "id" + """ + news_articles_pkey + + """ + unique or primary key constraint on columns "url" + """ + news_articles_url_key +} + +""" +input type for incrementing numeric columns in table "news_articles" +""" +input news_articles_inc_input { + issue_number: Int +} + +""" +input type for inserting data into table "news_articles" +""" +input news_articles_insert_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate max on columns""" +type news_articles_max_fields { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate min on columns""" +type news_articles_min_fields { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +""" +response of any mutation on the table "news_articles" +""" +type news_articles_mutation_response { + """number of rows affected by the mutation""" + affected_rows: Int! + + """data from the rows affected by the mutation""" + returning: [news_articles!]! +} + +""" +on_conflict condition type for table "news_articles" +""" +input news_articles_on_conflict { + constraint: news_articles_constraint! + update_columns: [news_articles_update_column!]! = [] + where: news_articles_bool_exp +} + +"""Ordering options when selecting data from "news_articles".""" +input news_articles_order_by { + author: order_by + content_html: order_by + cover_image_url: order_by + created_at: order_by + id: order_by + issue_number: order_by + published_at: order_by + scraped_at: order_by + slug: order_by + source: order_by + teaser: order_by + title: order_by + updated_at: order_by + url: order_by +} + +"""primary key columns input for table: news_articles""" +input news_articles_pk_columns_input { + id: uuid! +} + +""" +select columns of table "news_articles" +""" +enum news_articles_select_column { + """column name""" + author + + """column name""" + content_html + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + issue_number + + """column name""" + published_at + + """column name""" + scraped_at + + """column name""" + slug + + """column name""" + source + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + url +} + +""" +input type for updating data in table "news_articles" +""" +input news_articles_set_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate stddev on columns""" +type news_articles_stddev_fields { + issue_number: Float +} + +"""aggregate stddev_pop on columns""" +type news_articles_stddev_pop_fields { + issue_number: Float +} + +"""aggregate stddev_samp on columns""" +type news_articles_stddev_samp_fields { + issue_number: Float +} + +""" +Streaming cursor of the table "news_articles" +""" +input news_articles_stream_cursor_input { + """Stream column input with initial value""" + initial_value: news_articles_stream_cursor_value_input! + + """cursor ordering""" + ordering: cursor_ordering +} + +"""Initial value of the column from where the streaming should start""" +input news_articles_stream_cursor_value_input { + author: String + content_html: String + cover_image_url: String + created_at: timestamptz + id: uuid + issue_number: Int + published_at: timestamptz + scraped_at: timestamptz + slug: String + source: String + teaser: String + title: String + updated_at: timestamptz + url: String +} + +"""aggregate sum on columns""" +type news_articles_sum_fields { + issue_number: Int +} + +""" +update columns of table "news_articles" +""" +enum news_articles_update_column { + """column name""" + author + + """column name""" + content_html + + """column name""" + cover_image_url + + """column name""" + created_at + + """column name""" + id + + """column name""" + issue_number + + """column name""" + published_at + + """column name""" + scraped_at + + """column name""" + slug + + """column name""" + source + + """column name""" + teaser + + """column name""" + title + + """column name""" + updated_at + + """column name""" + url +} + +input news_articles_updates { + """increments the numeric columns with given value of the filtered values""" + _inc: news_articles_inc_input + + """sets the columns of the filtered rows to the given values""" + _set: news_articles_set_input + + """filter the rows which have to be updated""" + where: news_articles_bool_exp! +} + +"""aggregate var_pop on columns""" +type news_articles_var_pop_fields { + issue_number: Float +} + +"""aggregate var_samp on columns""" +type news_articles_var_samp_fields { + issue_number: Float +} + +"""aggregate variance on columns""" +type news_articles_variance_fields { + issue_number: Float +} + """ columns and relationships of "notifications" """ @@ -46145,6 +50026,7 @@ type players { where: player_kills_by_weapon_bool_exp ): player_kills_by_weapon_aggregate! language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """An array relationship""" @@ -47158,6 +51040,7 @@ input players_bool_exp { kills_by_weapons: player_kills_by_weapon_bool_exp kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_bool_exp language: String_comparison_exp + last_read_news_at: timestamptz_comparison_exp last_sign_in_at: timestamptz_comparison_exp lobby_players: lobby_players_bool_exp lobby_players_aggregate: lobby_players_aggregate_bool_exp @@ -47296,6 +51179,7 @@ input players_insert_input { kills: player_kills_arr_rel_insert_input kills_by_weapons: player_kills_by_weapon_arr_rel_insert_input language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz lobby_players: lobby_players_arr_rel_insert_input match_map_hltv: v_player_match_map_hltv_arr_rel_insert_input @@ -47354,6 +51238,7 @@ type players_max_fields { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """ @@ -47436,6 +51321,7 @@ type players_min_fields { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz """ @@ -47566,6 +51452,7 @@ input players_order_by { kills_aggregate: player_kills_aggregate_order_by kills_by_weapons_aggregate: player_kills_by_weapon_aggregate_order_by language: order_by + last_read_news_at: order_by last_sign_in_at: order_by lobby_players_aggregate: lobby_players_aggregate_order_by losses: order_by @@ -47667,6 +51554,9 @@ enum players_select_column { """column name""" language + """column name""" + last_read_news_at + """column name""" last_sign_in_at @@ -47725,6 +51615,7 @@ input players_set_input { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean @@ -47935,6 +51826,7 @@ input players_stream_cursor_value_input { faceit_url: String game_ban_count: Int language: String + last_read_news_at: timestamptz last_sign_in_at: timestamptz name: String name_registered: Boolean @@ -48052,6 +51944,9 @@ enum players_update_column { """column name""" language + """column name""" + last_read_news_at + """column name""" last_sign_in_at @@ -48708,6 +52603,135 @@ type query_root { """fetch data from the table: "db_backups" using primary key columns""" db_backups_by_pk(id: uuid!): db_backups + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + fetch data from the table: "draft_game_players" + """ + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """ + fetch aggregated fields from the table: "draft_game_players" + """ + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """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_check_in_settings" """ @@ -48753,6 +52777,231 @@ type query_root { """ e_check_in_settings_by_pk(value: String!): e_check_in_settings + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + """ fetch data from the table: "e_friend_status" """ @@ -51115,6 +55364,49 @@ type query_root { where: my_friends_bool_exp ): my_friends_aggregate! + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + """An array relationship""" notifications( """distinct select on columns""" @@ -56321,6 +60613,177 @@ type subscription_root { where: db_backups_bool_exp ): [db_backups!]! + """ + fetch data from the table: "draft_game_picks" + """ + draft_game_picks( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch aggregated fields from the table: "draft_game_picks" + """ + draft_game_picks_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_picks_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: [draft_game_picks_order_by!] + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): draft_game_picks_aggregate! + + """ + fetch data from the table: "draft_game_picks" using primary key columns + """ + draft_game_picks_by_pk(id: uuid!): draft_game_picks + + """ + fetch data from the table in a streaming manner: "draft_game_picks" + """ + draft_game_picks_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_picks_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_picks_bool_exp + ): [draft_game_picks!]! + + """ + fetch data from the table: "draft_game_players" + """ + draft_game_players( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """ + fetch aggregated fields from the table: "draft_game_players" + """ + draft_game_players_aggregate( + """distinct select on columns""" + distinct_on: [draft_game_players_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [draft_game_players_order_by!] + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): draft_game_players_aggregate! + + """ + fetch data from the table: "draft_game_players" using primary key columns + """ + draft_game_players_by_pk(draft_game_id: uuid!, steam_id: bigint!): draft_game_players + + """ + fetch data from the table in a streaming manner: "draft_game_players" + """ + draft_game_players_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_game_players_stream_cursor_input]! + + """filter the rows returned""" + where: draft_game_players_bool_exp + ): [draft_game_players!]! + + """An array relationship""" + draft_games( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + + """An aggregate relationship""" + draft_games_aggregate( + """distinct select on columns""" + distinct_on: [draft_games_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: [draft_games_order_by!] + + """filter the rows returned""" + where: draft_games_bool_exp + ): draft_games_aggregate! + + """fetch data from the table: "draft_games" using primary key columns""" + draft_games_by_pk(id: uuid!): draft_games + + """ + fetch data from the table in a streaming manner: "draft_games" + """ + draft_games_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [draft_games_stream_cursor_input]! + + """filter the rows returned""" + where: draft_games_bool_exp + ): [draft_games!]! + """ fetch data from the table: "e_check_in_settings" """ @@ -56380,6 +60843,301 @@ type subscription_root { where: e_check_in_settings_bool_exp ): [e_check_in_settings!]! + """ + fetch data from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch aggregated fields from the table: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_captain_selection_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_draft_game_captain_selection_order_by!] + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): e_draft_game_captain_selection_aggregate! + + """ + fetch data from the table: "e_draft_game_captain_selection" using primary key columns + """ + e_draft_game_captain_selection_by_pk(value: String!): e_draft_game_captain_selection + + """ + fetch data from the table in a streaming manner: "e_draft_game_captain_selection" + """ + e_draft_game_captain_selection_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_captain_selection_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_captain_selection_bool_exp + ): [e_draft_game_captain_selection!]! + + """ + fetch data from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch aggregated fields from the table: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_draft_order_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_draft_game_draft_order_order_by!] + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): e_draft_game_draft_order_aggregate! + + """ + fetch data from the table: "e_draft_game_draft_order" using primary key columns + """ + e_draft_game_draft_order_by_pk(value: String!): e_draft_game_draft_order + + """ + fetch data from the table in a streaming manner: "e_draft_game_draft_order" + """ + e_draft_game_draft_order_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_draft_order_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_draft_order_bool_exp + ): [e_draft_game_draft_order!]! + + """ + fetch data from the table: "e_draft_game_mode" + """ + e_draft_game_mode( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch aggregated fields from the table: "e_draft_game_mode" + """ + e_draft_game_mode_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_mode_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_draft_game_mode_order_by!] + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): e_draft_game_mode_aggregate! + + """ + fetch data from the table: "e_draft_game_mode" using primary key columns + """ + e_draft_game_mode_by_pk(value: String!): e_draft_game_mode + + """ + fetch data from the table in a streaming manner: "e_draft_game_mode" + """ + e_draft_game_mode_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_mode_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_mode_bool_exp + ): [e_draft_game_mode!]! + + """ + fetch data from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_player_status" + """ + e_draft_game_player_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_player_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_player_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): e_draft_game_player_status_aggregate! + + """ + fetch data from the table: "e_draft_game_player_status" using primary key columns + """ + e_draft_game_player_status_by_pk(value: String!): e_draft_game_player_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_player_status" + """ + e_draft_game_player_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_player_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_player_status_bool_exp + ): [e_draft_game_player_status!]! + + """ + fetch data from the table: "e_draft_game_status" + """ + e_draft_game_status( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + + """ + fetch aggregated fields from the table: "e_draft_game_status" + """ + e_draft_game_status_aggregate( + """distinct select on columns""" + distinct_on: [e_draft_game_status_select_column!] + + """limit the number of rows returned""" + limit: Int + + """skip the first n rows. Use only with order_by""" + offset: Int + + """sort the rows by one or more columns""" + order_by: [e_draft_game_status_order_by!] + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): e_draft_game_status_aggregate! + + """ + fetch data from the table: "e_draft_game_status" using primary key columns + """ + e_draft_game_status_by_pk(value: String!): e_draft_game_status + + """ + fetch data from the table in a streaming manner: "e_draft_game_status" + """ + e_draft_game_status_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [e_draft_game_status_stream_cursor_input]! + + """filter the rows returned""" + where: e_draft_game_status_bool_exp + ): [e_draft_game_status!]! + """ fetch data from the table: "e_friend_status" """ @@ -59401,6 +64159,63 @@ type subscription_root { where: my_friends_bool_exp ): [my_friends!]! + """ + fetch data from the table: "news_articles" + """ + news_articles( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + + """ + fetch aggregated fields from the table: "news_articles" + """ + news_articles_aggregate( + """distinct select on columns""" + distinct_on: [news_articles_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: [news_articles_order_by!] + + """filter the rows returned""" + where: news_articles_bool_exp + ): news_articles_aggregate! + + """fetch data from the table: "news_articles" using primary key columns""" + news_articles_by_pk(id: uuid!): news_articles + + """ + fetch data from the table in a streaming manner: "news_articles" + """ + news_articles_stream( + """maximum number of rows returned in a single batch""" + batch_size: Int! + + """cursor to stream the results returned by the query""" + cursor: [news_articles_stream_cursor_input]! + + """filter the rows returned""" + where: news_articles_bool_exp + ): [news_articles!]! + """An array relationship""" notifications( """distinct select on columns""" diff --git a/generated/schema.ts b/generated/schema.ts index 4f11627f..8e4c921c 100644 --- a/generated/schema.ts +++ b/generated/schema.ts @@ -82,6 +82,11 @@ export interface CreateClipRenderOutput { __typename: 'CreateClipRenderOutput' } +export interface CreateDraftGameOutput { + draftGameId: Scalars['uuid'] + __typename: 'CreateDraftGameOutput' +} + export interface DatabaseStats { blks_hit: Scalars['Int'] blks_read: Scalars['Int'] @@ -1238,6 +1243,605 @@ export interface db_backups_variance_fields { } +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picks { + auto_picked: Scalars['Boolean'] + /** An object relationship */ + captain: players + captain_steam_id: Scalars['bigint'] + created_at: Scalars['timestamptz'] + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + id: Scalars['uuid'] + lineup: Scalars['Int'] + /** An object relationship */ + picked: players + picked_steam_id: Scalars['bigint'] + __typename: 'draft_game_picks' +} + + +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregate { + aggregate: (draft_game_picks_aggregate_fields | null) + nodes: draft_game_picks[] + __typename: 'draft_game_picks_aggregate' +} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fields { + avg: (draft_game_picks_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_picks_max_fields | null) + min: (draft_game_picks_min_fields | null) + stddev: (draft_game_picks_stddev_fields | null) + stddev_pop: (draft_game_picks_stddev_pop_fields | null) + stddev_samp: (draft_game_picks_stddev_samp_fields | null) + sum: (draft_game_picks_sum_fields | null) + var_pop: (draft_game_picks_var_pop_fields | null) + var_samp: (draft_game_picks_var_samp_fields | null) + variance: (draft_game_picks_variance_fields | null) + __typename: 'draft_game_picks_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_picks" */ +export type draft_game_picks_constraint = 'draft_game_picks_pkey' + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fields { + captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + draft_game_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fields { + captain_steam_id: (Scalars['bigint'] | null) + created_at: (Scalars['timestamptz'] | null) + draft_game_id: (Scalars['uuid'] | null) + id: (Scalars['uuid'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_min_fields' +} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_picks[] + __typename: 'draft_game_picks_mutation_response' +} + + +/** select columns of table "draft_game_picks" */ +export type draft_game_picks_select_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns = 'auto_picked' + + +/** select "draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_picks" */ +export type draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns = 'auto_picked' + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fields { + captain_steam_id: (Scalars['bigint'] | null) + lineup: (Scalars['Int'] | null) + picked_steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_picks_sum_fields' +} + + +/** update columns of table "draft_game_picks" */ +export type draft_game_picks_update_column = 'auto_picked' | 'captain_steam_id' | 'created_at' | 'draft_game_id' | 'id' | 'lineup' | 'picked_steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fields { + captain_steam_id: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + picked_steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_picks_variance_fields' +} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_players { + /** An object relationship */ + draft_game: draft_games + draft_game_id: Scalars['uuid'] + /** An object relationship */ + e_draft_game_player_status: e_draft_game_player_status + elo_snapshot: (Scalars['Int'] | null) + is_captain: Scalars['Boolean'] + joined_at: Scalars['timestamptz'] + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + /** An object relationship */ + player: players + status: e_draft_game_player_status_enum + steam_id: Scalars['bigint'] + __typename: 'draft_game_players' +} + + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregate { + aggregate: (draft_game_players_aggregate_fields | null) + nodes: draft_game_players[] + __typename: 'draft_game_players_aggregate' +} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fields { + avg: (draft_game_players_avg_fields | null) + count: Scalars['Int'] + max: (draft_game_players_max_fields | null) + min: (draft_game_players_min_fields | null) + stddev: (draft_game_players_stddev_fields | null) + stddev_pop: (draft_game_players_stddev_pop_fields | null) + stddev_samp: (draft_game_players_stddev_samp_fields | null) + sum: (draft_game_players_sum_fields | null) + var_pop: (draft_game_players_var_pop_fields | null) + var_samp: (draft_game_players_var_samp_fields | null) + variance: (draft_game_players_variance_fields | null) + __typename: 'draft_game_players_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_avg_fields' +} + + +/** unique or primary key constraints on table "draft_game_players" */ +export type draft_game_players_constraint = 'draft_game_players_pkey' + + +/** aggregate max on columns */ +export interface draft_game_players_max_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fields { + draft_game_id: (Scalars['uuid'] | null) + elo_snapshot: (Scalars['Int'] | null) + joined_at: (Scalars['timestamptz'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_min_fields' +} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_game_players[] + __typename: 'draft_game_players_mutation_response' +} + + +/** select columns of table "draft_game_players" */ +export type draft_game_players_select_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** select "draft_game_players_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns = 'is_captain' + + +/** select "draft_game_players_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_game_players" */ +export type draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns = 'is_captain' + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fields { + elo_snapshot: (Scalars['Int'] | null) + lineup: (Scalars['Int'] | null) + pick_order: (Scalars['Int'] | null) + steam_id: (Scalars['bigint'] | null) + __typename: 'draft_game_players_sum_fields' +} + + +/** update columns of table "draft_game_players" */ +export type draft_game_players_update_column = 'draft_game_id' | 'elo_snapshot' | 'is_captain' | 'joined_at' | 'lineup' | 'pick_order' | 'status' | 'steam_id' + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_game_players_variance_fields { + elo_snapshot: (Scalars['Float'] | null) + lineup: (Scalars['Float'] | null) + pick_order: (Scalars['Float'] | null) + steam_id: (Scalars['Float'] | null) + __typename: 'draft_game_players_variance_fields' +} + + +/** columns and relationships of "draft_games" */ +export interface draft_games { + access: e_lobby_access_enum + capacity: Scalars['Int'] + captain_selection: e_draft_game_captain_selection_enum + created_at: Scalars['timestamptz'] + current_pick_lineup: (Scalars['Int'] | null) + draft_order: e_draft_game_draft_order_enum + /** An object relationship */ + e_draft_game_captain_selection: e_draft_game_captain_selection + /** An object relationship */ + e_draft_game_draft_order: e_draft_game_draft_order + /** An object relationship */ + e_draft_game_mode: e_draft_game_mode + /** An object relationship */ + e_draft_game_status: e_draft_game_status + /** An object relationship */ + e_lobby_access: e_lobby_access + expires_at: (Scalars['timestamptz'] | null) + /** An object relationship */ + host: players + host_steam_id: Scalars['bigint'] + id: Scalars['uuid'] + inner_squad: Scalars['Boolean'] + invite_code: Scalars['uuid'] + /** An object relationship */ + map_pool: (map_pools | null) + map_pool_id: (Scalars['uuid'] | null) + /** An object relationship */ + match: (matches | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + mode: e_draft_game_mode_enum + /** An object relationship */ + options: (match_options | null) + pick_deadline: (Scalars['timestamptz'] | null) + /** An array relationship */ + picks: draft_game_picks[] + /** An aggregate relationship */ + picks_aggregate: draft_game_picks_aggregate + /** An array relationship */ + players: draft_game_players[] + /** An aggregate relationship */ + players_aggregate: draft_game_players_aggregate + regions: Scalars['String'][] + require_approval: Scalars['Boolean'] + status: e_draft_game_status_enum + /** An object relationship */ + team_1: (teams | null) + team_1_id: (Scalars['uuid'] | null) + /** An object relationship */ + team_2: (teams | null) + team_2_id: (Scalars['uuid'] | null) + type: e_match_types_enum + updated_at: Scalars['timestamptz'] + __typename: 'draft_games' +} + + +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregate { + aggregate: (draft_games_aggregate_fields | null) + nodes: draft_games[] + __typename: 'draft_games_aggregate' +} + + +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fields { + avg: (draft_games_avg_fields | null) + count: Scalars['Int'] + max: (draft_games_max_fields | null) + min: (draft_games_min_fields | null) + stddev: (draft_games_stddev_fields | null) + stddev_pop: (draft_games_stddev_pop_fields | null) + stddev_samp: (draft_games_stddev_samp_fields | null) + sum: (draft_games_sum_fields | null) + var_pop: (draft_games_var_pop_fields | null) + var_samp: (draft_games_var_samp_fields | null) + variance: (draft_games_variance_fields | null) + __typename: 'draft_games_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_avg_fields' +} + + +/** unique or primary key constraints on table "draft_games" */ +export type draft_games_constraint = 'draft_games_pkey' + + +/** aggregate max on columns */ +export interface draft_games_max_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_max_fields' +} + + +/** aggregate min on columns */ +export interface draft_games_min_fields { + capacity: (Scalars['Int'] | null) + created_at: (Scalars['timestamptz'] | null) + current_pick_lineup: (Scalars['Int'] | null) + expires_at: (Scalars['timestamptz'] | null) + host_steam_id: (Scalars['bigint'] | null) + id: (Scalars['uuid'] | null) + invite_code: (Scalars['uuid'] | null) + map_pool_id: (Scalars['uuid'] | null) + match_id: (Scalars['uuid'] | null) + match_options_id: (Scalars['uuid'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + pick_deadline: (Scalars['timestamptz'] | null) + regions: (Scalars['String'][] | null) + team_1_id: (Scalars['uuid'] | null) + team_2_id: (Scalars['uuid'] | null) + updated_at: (Scalars['timestamptz'] | null) + __typename: 'draft_games_min_fields' +} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: draft_games[] + __typename: 'draft_games_mutation_response' +} + + +/** select columns of table "draft_games" */ +export type draft_games_select_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** select "draft_games_aggregate_bool_exp_bool_and_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns = 'inner_squad' | 'require_approval' + + +/** select "draft_games_aggregate_bool_exp_bool_or_arguments_columns" columns of table "draft_games" */ +export type draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns = 'inner_squad' | 'require_approval' + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface draft_games_sum_fields { + capacity: (Scalars['Int'] | null) + current_pick_lineup: (Scalars['Int'] | null) + host_steam_id: (Scalars['bigint'] | null) + max_elo: (Scalars['Int'] | null) + min_elo: (Scalars['Int'] | null) + __typename: 'draft_games_sum_fields' +} + + +/** update columns of table "draft_games" */ +export type draft_games_update_column = 'access' | 'capacity' | 'captain_selection' | 'created_at' | 'current_pick_lineup' | 'draft_order' | 'expires_at' | 'host_steam_id' | 'id' | 'inner_squad' | 'invite_code' | 'map_pool_id' | 'match_id' | 'match_options_id' | 'max_elo' | 'min_elo' | 'mode' | 'pick_deadline' | 'regions' | 'require_approval' | 'status' | 'team_1_id' | 'team_2_id' | 'type' | 'updated_at' + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface draft_games_variance_fields { + capacity: (Scalars['Float'] | null) + current_pick_lineup: (Scalars['Float'] | null) + host_steam_id: (Scalars['Float'] | null) + max_elo: (Scalars['Float'] | null) + min_elo: (Scalars['Float'] | null) + __typename: 'draft_games_variance_fields' +} + + /** columns and relationships of "e_check_in_settings" */ export interface e_check_in_settings { description: Scalars['String'] @@ -1303,6 +1907,331 @@ export type e_check_in_settings_select_column = 'description' | 'value' export type e_check_in_settings_update_column = 'description' | 'value' +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_captain_selection' +} + + +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate { + aggregate: (e_draft_game_captain_selection_aggregate_fields | null) + nodes: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_aggregate' +} + + +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_captain_selection_max_fields | null) + min: (e_draft_game_captain_selection_min_fields | null) + __typename: 'e_draft_game_captain_selection_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_constraint = 'e_draft_game_captain_selection_pkey' + +export type e_draft_game_captain_selection_enum = 'HostAndNext' | 'RandomTwo' | 'TopEloTwo' + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_captain_selection_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_captain_selection[] + __typename: 'e_draft_game_captain_selection_mutation_response' +} + + +/** select columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_captain_selection" */ +export type e_draft_game_captain_selection_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_draft_order' +} + + +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate { + aggregate: (e_draft_game_draft_order_aggregate_fields | null) + nodes: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_aggregate' +} + + +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_draft_order_max_fields | null) + min: (e_draft_game_draft_order_min_fields | null) + __typename: 'e_draft_game_draft_order_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_constraint = 'e_draft_game_draft_order_pkey' + +export type e_draft_game_draft_order_enum = 'Alternating' | 'Snake' + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_draft_order_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_draft_order[] + __typename: 'e_draft_game_draft_order_mutation_response' +} + + +/** select columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_draft_order" */ +export type e_draft_game_draft_order_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_mode { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_mode' +} + + +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate { + aggregate: (e_draft_game_mode_aggregate_fields | null) + nodes: e_draft_game_mode[] + __typename: 'e_draft_game_mode_aggregate' +} + + +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_mode_max_fields | null) + min: (e_draft_game_mode_min_fields | null) + __typename: 'e_draft_game_mode_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_mode" */ +export type e_draft_game_mode_constraint = 'e_draft_game_mode_pkey' + +export type e_draft_game_mode_enum = 'Captains' | 'Host' | 'Pug' | 'Teams' + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_mode_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_mode[] + __typename: 'e_draft_game_mode_mutation_response' +} + + +/** select columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_mode" */ +export type e_draft_game_mode_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_player_status' +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate { + aggregate: (e_draft_game_player_status_aggregate_fields | null) + nodes: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_player_status_max_fields | null) + min: (e_draft_game_player_status_min_fields | null) + __typename: 'e_draft_game_player_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_player_status" */ +export type e_draft_game_player_status_constraint = 'e_draft_game_player_status_pkey' + +export type e_draft_game_player_status_enum = 'Accepted' | 'Requested' | 'Waitlist' + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_player_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_player_status[] + __typename: 'e_draft_game_player_status_mutation_response' +} + + +/** select columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_player_status" */ +export type e_draft_game_player_status_update_column = 'description' | 'value' + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_status { + description: Scalars['String'] + value: Scalars['String'] + __typename: 'e_draft_game_status' +} + + +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate { + aggregate: (e_draft_game_status_aggregate_fields | null) + nodes: e_draft_game_status[] + __typename: 'e_draft_game_status_aggregate' +} + + +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fields { + count: Scalars['Int'] + max: (e_draft_game_status_max_fields | null) + min: (e_draft_game_status_min_fields | null) + __typename: 'e_draft_game_status_aggregate_fields' +} + + +/** unique or primary key constraints on table "e_draft_game_status" */ +export type e_draft_game_status_constraint = 'e_draft_game_status_pkey' + +export type e_draft_game_status_enum = 'Canceled' | 'Completed' | 'CreatingMatch' | 'Drafting' | 'Filled' | 'Open' | 'SelectingCaptains' + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_max_fields' +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fields { + description: (Scalars['String'] | null) + value: (Scalars['String'] | null) + __typename: 'e_draft_game_status_min_fields' +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: e_draft_game_status[] + __typename: 'e_draft_game_status_mutation_response' +} + + +/** select columns of table "e_draft_game_status" */ +export type e_draft_game_status_select_column = 'description' | 'value' + + +/** update columns of table "e_draft_game_status" */ +export type e_draft_game_status_update_column = 'description' | 'value' + + /** columns and relationships of "e_friend_status" */ export interface e_friend_status { description: Scalars['String'] @@ -6676,6 +7605,10 @@ export interface matches { demos: match_map_demos[] /** An aggregate relationship */ demos_aggregate: match_map_demos_aggregate + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + draft_games_aggregate: draft_games_aggregate /** An object relationship */ e_match_status: e_match_status /** An object relationship */ @@ -7146,6 +8079,8 @@ export interface mutation_root { /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ createClipRender: (CreateClipRenderOutput | null) createClips: (SuccessOutput | null) + /** createDraftGame */ + createDraftGame: (CreateDraftGameOutput | null) /** Create directory on game server */ createServerDirectory: (SuccessOutput | null) /** Delete a saved clip and its underlying S3 object */ @@ -7177,10 +8112,42 @@ export interface mutation_root { delete_db_backups: (db_backups_mutation_response | null) /** delete single row from the table: "db_backups" */ delete_db_backups_by_pk: (db_backups | null) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks: (draft_game_picks_mutation_response | null) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk: (draft_game_picks | null) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players: (draft_game_players_mutation_response | null) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk: (draft_game_players | null) + /** delete data from the table: "draft_games" */ + 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_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" */ delete_e_check_in_settings_by_pk: (e_check_in_settings | null) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk: (e_draft_game_status | null) /** delete data from the table: "e_friend_status" */ delete_e_friend_status: (e_friend_status_mutation_response | null) /** delete single row from the table: "e_friend_status" */ @@ -7381,6 +8348,10 @@ export interface mutation_root { delete_migration_hashes_hashes_by_pk: (migration_hashes_hashes | null) /** delete data from the table: "v_my_friends" */ delete_my_friends: (my_friends_mutation_response | null) + /** delete data from the table: "news_articles" */ + delete_news_articles: (news_articles_mutation_response | null) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk: (news_articles | null) /** delete data from the table: "notifications" */ delete_notifications: (notifications_mutation_response | null) /** delete single row from the table: "notifications" */ @@ -7552,6 +8523,8 @@ export interface mutation_root { /** delete single row from the table: "v_team_stage_results" */ delete_v_team_stage_results_by_pk: (v_team_stage_results | null) denyInvite: (SuccessOutput | null) + /** extendDraftGame */ + extendDraftGame: (SuccessOutput | null) forfeitMatch: (SuccessOutput | null) /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState: (LiveStreamSpecState | null) @@ -7576,10 +8549,42 @@ export interface mutation_root { insert_db_backups: (db_backups_mutation_response | null) /** insert a single row into the table: "db_backups" */ insert_db_backups_one: (db_backups | null) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks: (draft_game_picks_mutation_response | null) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one: (draft_game_picks | null) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players: (draft_game_players_mutation_response | null) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one: (draft_game_players | null) + /** insert data into the table: "draft_games" */ + 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_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" */ insert_e_check_in_settings_one: (e_check_in_settings | null) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one: (e_draft_game_captain_selection | null) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one: (e_draft_game_draft_order | null) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one: (e_draft_game_mode | null) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one: (e_draft_game_player_status | null) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one: (e_draft_game_status | null) /** insert data into the table: "e_friend_status" */ insert_e_friend_status: (e_friend_status_mutation_response | null) /** insert a single row into the table: "e_friend_status" */ @@ -7784,6 +8789,10 @@ export interface mutation_root { insert_my_friends: (my_friends_mutation_response | null) /** insert a single row into the table: "v_my_friends" */ insert_my_friends_one: (my_friends | null) + /** insert data into the table: "news_articles" */ + insert_news_articles: (news_articles_mutation_response | null) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one: (news_articles | null) /** insert data into the table: "notifications" */ insert_notifications: (notifications_mutation_response | null) /** insert a single row into the table: "notifications" */ @@ -7964,6 +8973,10 @@ export interface mutation_root { insert_v_team_stage_results: (v_team_stage_results_mutation_response | null) /** insert a single row into the table: "v_team_stage_results" */ insert_v_team_stage_results_one: (v_team_stage_results | null) + /** joinDraftGame */ + joinDraftGame: (SuccessOutput | null) + /** joinDraftGameAsParty */ + joinDraftGameAsParty: (SuccessOutput | null) joinLineup: (SuccessOutput | null) kickServerPlayer: KickResult leaveLineup: (SuccessOutput | null) @@ -8006,6 +9019,8 @@ export interface mutation_root { requestNameChange: (SuccessOutput | null) /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ requeueClipRender: (SuccessOutput | null) + /** Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. */ + rescanTldrNews: (SuccessOutput | null) restartService: (SuccessOutput | null) /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ resumeClipRenderBatch: (SuccessOutput | null) @@ -8055,6 +9070,8 @@ export interface mutation_root { /** Owner-only patch for clip title / visibility / target_steam_id. */ updateClip: (SuccessOutput | null) updateCs: (SuccessOutput | null) + /** updateDraftGame */ + updateDraftGame: (SuccessOutput | null) updateServices: (SuccessOutput | null) /** update data of the table: "_map_pool" */ update__map_pool: (_map_pool_mutation_response | null) @@ -8086,12 +9103,60 @@ export interface mutation_root { update_db_backups_by_pk: (db_backups | null) /** update multiples rows of table: "db_backups" */ update_db_backups_many: ((db_backups_mutation_response | null)[] | null) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks: (draft_game_picks_mutation_response | null) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk: (draft_game_picks | null) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many: ((draft_game_picks_mutation_response | null)[] | null) + /** update data of the table: "draft_game_players" */ + update_draft_game_players: (draft_game_players_mutation_response | null) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk: (draft_game_players | null) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many: ((draft_game_players_mutation_response | null)[] | null) + /** update data of the table: "draft_games" */ + update_draft_games: (draft_games_mutation_response | null) + /** update single row of the table: "draft_games" */ + 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_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" */ update_e_check_in_settings_by_pk: (e_check_in_settings | null) /** update multiples rows of table: "e_check_in_settings" */ update_e_check_in_settings_many: ((e_check_in_settings_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection: (e_draft_game_captain_selection_mutation_response | null) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many: ((e_draft_game_captain_selection_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order: (e_draft_game_draft_order_mutation_response | null) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many: ((e_draft_game_draft_order_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode: (e_draft_game_mode_mutation_response | null) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many: ((e_draft_game_mode_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status: (e_draft_game_player_status_mutation_response | null) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many: ((e_draft_game_player_status_mutation_response | null)[] | null) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status: (e_draft_game_status_mutation_response | null) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk: (e_draft_game_status | null) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many: ((e_draft_game_status_mutation_response | null)[] | null) /** update data of the table: "e_friend_status" */ update_e_friend_status: (e_friend_status_mutation_response | null) /** update single row of the table: "e_friend_status" */ @@ -8394,6 +9459,12 @@ export interface mutation_root { update_my_friends: (my_friends_mutation_response | null) /** update multiples rows of table: "v_my_friends" */ update_my_friends_many: ((my_friends_mutation_response | null)[] | null) + /** update data of the table: "news_articles" */ + update_news_articles: (news_articles_mutation_response | null) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk: (news_articles | null) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many: ((news_articles_mutation_response | null)[] | null) /** update data of the table: "notifications" */ update_notifications: (notifications_mutation_response | null) /** update single row of the table: "notifications" */ @@ -8844,6 +9915,169 @@ export interface my_friends_variance_fields { } +/** columns and relationships of "news_articles" */ +export interface news_articles { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: Scalars['timestamptz'] + id: Scalars['uuid'] + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: Scalars['timestamptz'] + slug: (Scalars['String'] | null) + source: Scalars['String'] + teaser: (Scalars['String'] | null) + title: Scalars['String'] + updated_at: Scalars['timestamptz'] + url: Scalars['String'] + __typename: 'news_articles' +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregate { + aggregate: (news_articles_aggregate_fields | null) + nodes: news_articles[] + __typename: 'news_articles_aggregate' +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fields { + avg: (news_articles_avg_fields | null) + count: Scalars['Int'] + max: (news_articles_max_fields | null) + min: (news_articles_min_fields | null) + stddev: (news_articles_stddev_fields | null) + stddev_pop: (news_articles_stddev_pop_fields | null) + stddev_samp: (news_articles_stddev_samp_fields | null) + sum: (news_articles_sum_fields | null) + var_pop: (news_articles_var_pop_fields | null) + var_samp: (news_articles_var_samp_fields | null) + variance: (news_articles_variance_fields | null) + __typename: 'news_articles_aggregate_fields' +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_avg_fields' +} + + +/** unique or primary key constraints on table "news_articles" */ +export type news_articles_constraint = 'news_articles_pkey' | 'news_articles_url_key' + + +/** aggregate max on columns */ +export interface news_articles_max_fields { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + url: (Scalars['String'] | null) + __typename: 'news_articles_max_fields' +} + + +/** aggregate min on columns */ +export interface news_articles_min_fields { + author: (Scalars['String'] | null) + content_html: (Scalars['String'] | null) + cover_image_url: (Scalars['String'] | null) + created_at: (Scalars['timestamptz'] | null) + id: (Scalars['uuid'] | null) + issue_number: (Scalars['Int'] | null) + published_at: (Scalars['timestamptz'] | null) + scraped_at: (Scalars['timestamptz'] | null) + slug: (Scalars['String'] | null) + source: (Scalars['String'] | null) + teaser: (Scalars['String'] | null) + title: (Scalars['String'] | null) + updated_at: (Scalars['timestamptz'] | null) + url: (Scalars['String'] | null) + __typename: 'news_articles_min_fields' +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_response { + /** number of rows affected by the mutation */ + affected_rows: Scalars['Int'] + /** data from the rows affected by the mutation */ + returning: news_articles[] + __typename: 'news_articles_mutation_response' +} + + +/** select columns of table "news_articles" */ +export type news_articles_select_column = 'author' | 'content_html' | 'cover_image_url' | 'created_at' | 'id' | 'issue_number' | 'published_at' | 'scraped_at' | 'slug' | 'source' | 'teaser' | 'title' | 'updated_at' | 'url' + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_fields' +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_pop_fields' +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_stddev_samp_fields' +} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fields { + issue_number: (Scalars['Int'] | null) + __typename: 'news_articles_sum_fields' +} + + +/** update columns of table "news_articles" */ +export type news_articles_update_column = 'author' | 'content_html' | 'cover_image_url' | 'created_at' | 'id' | 'issue_number' | 'published_at' | 'scraped_at' | 'slug' | 'source' | 'teaser' | 'title' | 'updated_at' | 'url' + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_var_pop_fields' +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_var_samp_fields' +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fields { + issue_number: (Scalars['Float'] | null) + __typename: 'news_articles_variance_fields' +} + + /** columns and relationships of "notifications" */ export interface notifications { actions: (Scalars['jsonb'] | null) @@ -15470,6 +16704,7 @@ export interface players { /** An aggregate relationship */ kills_by_weapons_aggregate: player_kills_by_weapon_aggregate language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** An array relationship */ lobby_players: lobby_players[] @@ -15677,6 +16912,7 @@ export interface players_max_fields { faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** A computed field, executes function "get_total_player_losses" */ losses: (Scalars['Int'] | null) @@ -15728,6 +16964,7 @@ export interface players_min_fields { faceit_url: (Scalars['String'] | null) game_ban_count: (Scalars['Int'] | null) language: (Scalars['String'] | null) + last_read_news_at: (Scalars['timestamptz'] | null) last_sign_in_at: (Scalars['timestamptz'] | null) /** A computed field, executes function "get_total_player_losses" */ losses: (Scalars['Int'] | null) @@ -15772,7 +17009,7 @@ export interface players_mutation_response { /** select columns of table "players" */ -export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_select_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate stddev on columns */ @@ -15900,7 +17137,7 @@ export interface players_sum_fields { /** update columns of table "players" */ -export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' +export type players_update_column = 'avatar_url' | 'country' | 'created_at' | 'custom_avatar_url' | 'days_since_last_ban' | 'discord_id' | 'faceit_elo' | 'faceit_nickname' | 'faceit_player_id' | 'faceit_skill_level' | 'faceit_updated_at' | 'faceit_url' | 'game_ban_count' | 'language' | 'last_read_news_at' | 'last_sign_in_at' | 'name' | 'name_registered' | 'premier_rank' | 'premier_rank_updated_at' | 'profile_url' | 'role' | 'roster_image_url' | 'show_match_ready_modal' | 'steam_bans_checked_at' | 'steam_id' | 'vac_ban_count' | 'vac_banned' /** aggregate var_pop on columns */ @@ -16157,12 +17394,60 @@ export interface query_root { db_backups_aggregate: db_backups_aggregate /** fetch data from the table: "db_backups" using primary key columns */ db_backups_by_pk: (db_backups | null) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** fetch data from the table: "draft_game_players" */ + draft_game_players: draft_game_players[] + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + 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_check_in_settings" */ e_check_in_settings: e_check_in_settings[] /** fetch aggregated fields from the table: "e_check_in_settings" */ e_check_in_settings_aggregate: e_check_in_settings_aggregate /** fetch data from the table: "e_check_in_settings" using primary key columns */ e_check_in_settings_by_pk: (e_check_in_settings | null) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -16511,6 +17796,12 @@ export interface query_root { my_friends: my_friends[] /** fetch aggregated fields from the table: "v_my_friends" */ my_friends_aggregate: my_friends_aggregate + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -17553,6 +18844,30 @@ export interface subscription_root { db_backups_by_pk: (db_backups | null) /** fetch data from the table in a streaming manner: "db_backups" */ db_backups_stream: db_backups[] + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks: draft_game_picks[] + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate: draft_game_picks_aggregate + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk: (draft_game_picks | null) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream: draft_game_picks[] + /** fetch data from the table: "draft_game_players" */ + draft_game_players: draft_game_players[] + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate: draft_game_players_aggregate + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk: (draft_game_players | null) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream: draft_game_players[] + /** An array relationship */ + draft_games: draft_games[] + /** An aggregate relationship */ + 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 in a streaming manner: "draft_games" */ + draft_games_stream: draft_games[] /** 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" */ @@ -17561,6 +18876,46 @@ export interface subscription_root { e_check_in_settings_by_pk: (e_check_in_settings | null) /** fetch data from the table in a streaming manner: "e_check_in_settings" */ e_check_in_settings_stream: e_check_in_settings[] + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection: e_draft_game_captain_selection[] + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate: e_draft_game_captain_selection_aggregate + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk: (e_draft_game_captain_selection | null) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream: e_draft_game_captain_selection[] + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order: e_draft_game_draft_order[] + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate: e_draft_game_draft_order_aggregate + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk: (e_draft_game_draft_order | null) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream: e_draft_game_draft_order[] + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode: e_draft_game_mode[] + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate: e_draft_game_mode_aggregate + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk: (e_draft_game_mode | null) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream: e_draft_game_mode[] + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status: e_draft_game_player_status[] + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate: e_draft_game_player_status_aggregate + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk: (e_draft_game_player_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream: e_draft_game_player_status[] + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status: e_draft_game_status[] + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate: e_draft_game_status_aggregate + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk: (e_draft_game_status | null) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream: e_draft_game_status[] /** fetch data from the table: "e_friend_status" */ e_friend_status: e_friend_status[] /** fetch aggregated fields from the table: "e_friend_status" */ @@ -17973,6 +19328,14 @@ export interface subscription_root { my_friends_aggregate: my_friends_aggregate /** fetch data from the table in a streaming manner: "v_my_friends" */ my_friends_stream: my_friends[] + /** fetch data from the table: "news_articles" */ + news_articles: news_articles[] + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate: news_articles_aggregate + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk: (news_articles | null) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream: news_articles[] /** An array relationship */ notifications: notifications[] /** An aggregate relationship */ @@ -25633,6 +26996,12 @@ export interface CreateClipRenderOutputGenqlSelection{ __scalar?: boolean | number } +export interface CreateDraftGameOutputGenqlSelection{ + draftGameId?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + export interface DatabaseStatsGenqlSelection{ blks_hit?: boolean | number blks_read?: boolean | number @@ -27262,6 +28631,951 @@ export interface db_backups_variance_fieldsGenqlSelection{ } +/** columns and relationships of "draft_game_picks" */ +export interface draft_game_picksGenqlSelection{ + auto_picked?: boolean | number + /** An object relationship */ + captain?: playersGenqlSelection + captain_steam_id?: boolean | number + created_at?: boolean | number + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + /** An object relationship */ + picked?: playersGenqlSelection + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_game_picks" */ +export interface draft_game_picks_aggregateGenqlSelection{ + aggregate?: draft_game_picks_aggregate_fieldsGenqlSelection + nodes?: draft_game_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_game_picks_aggregate_bool_exp {bool_and?: (draft_game_picks_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_picks_aggregate_bool_exp_bool_or | null),count?: (draft_game_picks_aggregate_bool_exp_count | null)} + +export interface draft_game_picks_aggregate_bool_exp_bool_and {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_bool_or {arguments: draft_game_picks_select_column_draft_game_picks_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_picks_aggregate_bool_exp_count {arguments?: (draft_game_picks_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_picks_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_picks" */ +export interface draft_game_picks_aggregate_fieldsGenqlSelection{ + avg?: draft_game_picks_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_picks_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_picks_max_fieldsGenqlSelection + min?: draft_game_picks_min_fieldsGenqlSelection + stddev?: draft_game_picks_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_picks_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_picks_stddev_samp_fieldsGenqlSelection + sum?: draft_game_picks_sum_fieldsGenqlSelection + var_pop?: draft_game_picks_var_pop_fieldsGenqlSelection + var_samp?: draft_game_picks_var_samp_fieldsGenqlSelection + variance?: draft_game_picks_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_game_picks" */ +export interface draft_game_picks_aggregate_order_by {avg?: (draft_game_picks_avg_order_by | null),count?: (order_by | null),max?: (draft_game_picks_max_order_by | null),min?: (draft_game_picks_min_order_by | null),stddev?: (draft_game_picks_stddev_order_by | null),stddev_pop?: (draft_game_picks_stddev_pop_order_by | null),stddev_samp?: (draft_game_picks_stddev_samp_order_by | null),sum?: (draft_game_picks_sum_order_by | null),var_pop?: (draft_game_picks_var_pop_order_by | null),var_samp?: (draft_game_picks_var_samp_order_by | null),variance?: (draft_game_picks_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_picks" */ +export interface draft_game_picks_arr_rel_insert_input {data: draft_game_picks_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_picks_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_picks_avg_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_game_picks" */ +export interface draft_game_picks_avg_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_picks". All fields are combined with a logical 'AND'. */ +export interface draft_game_picks_bool_exp {_and?: (draft_game_picks_bool_exp[] | null),_not?: (draft_game_picks_bool_exp | null),_or?: (draft_game_picks_bool_exp[] | null),auto_picked?: (Boolean_comparison_exp | null),captain?: (players_bool_exp | null),captain_steam_id?: (bigint_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),id?: (uuid_comparison_exp | null),lineup?: (Int_comparison_exp | null),picked?: (players_bool_exp | null),picked_steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_picks" */ +export interface draft_game_picks_inc_input {captain_steam_id?: (Scalars['bigint'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_picks" */ +export interface draft_game_picks_insert_input {auto_picked?: (Scalars['Boolean'] | null),captain?: (players_obj_rel_insert_input | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked?: (players_obj_rel_insert_input | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_picks_max_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_picks" */ +export interface draft_game_picks_max_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_picks_min_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + created_at?: boolean | number + draft_game_id?: boolean | number + id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_picks" */ +export interface draft_game_picks_min_order_by {captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_picks" */ +export interface draft_game_picks_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_picksGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_picks" */ +export interface draft_game_picks_on_conflict {constraint: draft_game_picks_constraint,update_columns?: draft_game_picks_update_column[],where?: (draft_game_picks_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_picks". */ +export interface draft_game_picks_order_by {auto_picked?: (order_by | null),captain?: (players_order_by | null),captain_steam_id?: (order_by | null),created_at?: (order_by | null),draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),id?: (order_by | null),lineup?: (order_by | null),picked?: (players_order_by | null),picked_steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_picks */ +export interface draft_game_picks_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_game_picks" */ +export interface draft_game_picks_set_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_picks_stddev_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_picks_stddev_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_picks_stddev_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_stddev_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_picks" */ +export interface draft_game_picks_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_picks_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_picks_stream_cursor_value_input {auto_picked?: (Scalars['Boolean'] | null),captain_steam_id?: (Scalars['bigint'] | null),created_at?: (Scalars['timestamptz'] | null),draft_game_id?: (Scalars['uuid'] | null),id?: (Scalars['uuid'] | null),lineup?: (Scalars['Int'] | null),picked_steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_picks_sum_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_picks" */ +export interface draft_game_picks_sum_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + +export interface draft_game_picks_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_picks_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_picks_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_picks_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_picks_var_pop_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_pop_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_picks_var_samp_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_game_picks" */ +export interface draft_game_picks_var_samp_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_picks_variance_fieldsGenqlSelection{ + captain_steam_id?: boolean | number + lineup?: boolean | number + picked_steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_game_picks" */ +export interface draft_game_picks_variance_order_by {captain_steam_id?: (order_by | null),lineup?: (order_by | null),picked_steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_game_players" */ +export interface draft_game_playersGenqlSelection{ + /** An object relationship */ + draft_game?: draft_gamesGenqlSelection + draft_game_id?: boolean | number + /** An object relationship */ + e_draft_game_player_status?: e_draft_game_player_statusGenqlSelection + elo_snapshot?: boolean | number + is_captain?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + /** An object relationship */ + player?: playersGenqlSelection + status?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_game_players" */ +export interface draft_game_players_aggregateGenqlSelection{ + aggregate?: draft_game_players_aggregate_fieldsGenqlSelection + nodes?: draft_game_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_game_players_aggregate_bool_exp {bool_and?: (draft_game_players_aggregate_bool_exp_bool_and | null),bool_or?: (draft_game_players_aggregate_bool_exp_bool_or | null),count?: (draft_game_players_aggregate_bool_exp_count | null)} + +export interface draft_game_players_aggregate_bool_exp_bool_and {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_bool_or {arguments: draft_game_players_select_column_draft_game_players_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_game_players_aggregate_bool_exp_count {arguments?: (draft_game_players_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_game_players_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_game_players" */ +export interface draft_game_players_aggregate_fieldsGenqlSelection{ + avg?: draft_game_players_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_game_players_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_game_players_max_fieldsGenqlSelection + min?: draft_game_players_min_fieldsGenqlSelection + stddev?: draft_game_players_stddev_fieldsGenqlSelection + stddev_pop?: draft_game_players_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_game_players_stddev_samp_fieldsGenqlSelection + sum?: draft_game_players_sum_fieldsGenqlSelection + var_pop?: draft_game_players_var_pop_fieldsGenqlSelection + var_samp?: draft_game_players_var_samp_fieldsGenqlSelection + variance?: draft_game_players_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_game_players" */ +export interface draft_game_players_aggregate_order_by {avg?: (draft_game_players_avg_order_by | null),count?: (order_by | null),max?: (draft_game_players_max_order_by | null),min?: (draft_game_players_min_order_by | null),stddev?: (draft_game_players_stddev_order_by | null),stddev_pop?: (draft_game_players_stddev_pop_order_by | null),stddev_samp?: (draft_game_players_stddev_samp_order_by | null),sum?: (draft_game_players_sum_order_by | null),var_pop?: (draft_game_players_var_pop_order_by | null),var_samp?: (draft_game_players_var_samp_order_by | null),variance?: (draft_game_players_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_game_players" */ +export interface draft_game_players_arr_rel_insert_input {data: draft_game_players_insert_input[], +/** upsert condition */ +on_conflict?: (draft_game_players_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_game_players_avg_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_game_players" */ +export interface draft_game_players_avg_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Boolean expression to filter rows from the table "draft_game_players". All fields are combined with a logical 'AND'. */ +export interface draft_game_players_bool_exp {_and?: (draft_game_players_bool_exp[] | null),_not?: (draft_game_players_bool_exp | null),_or?: (draft_game_players_bool_exp[] | null),draft_game?: (draft_games_bool_exp | null),draft_game_id?: (uuid_comparison_exp | null),e_draft_game_player_status?: (e_draft_game_player_status_bool_exp | null),elo_snapshot?: (Int_comparison_exp | null),is_captain?: (Boolean_comparison_exp | null),joined_at?: (timestamptz_comparison_exp | null),lineup?: (Int_comparison_exp | null),pick_order?: (Int_comparison_exp | null),player?: (players_bool_exp | null),status?: (e_draft_game_player_status_enum_comparison_exp | null),steam_id?: (bigint_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_game_players" */ +export interface draft_game_players_inc_input {elo_snapshot?: (Scalars['Int'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),steam_id?: (Scalars['bigint'] | null)} + + +/** input type for inserting data into table "draft_game_players" */ +export interface draft_game_players_insert_input {draft_game?: (draft_games_obj_rel_insert_input | null),draft_game_id?: (Scalars['uuid'] | null),e_draft_game_player_status?: (e_draft_game_player_status_obj_rel_insert_input | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),player?: (players_obj_rel_insert_input | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate max on columns */ +export interface draft_game_players_max_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_game_players" */ +export interface draft_game_players_max_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_game_players_min_fieldsGenqlSelection{ + draft_game_id?: boolean | number + elo_snapshot?: boolean | number + joined_at?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_game_players" */ +export interface draft_game_players_min_order_by {draft_game_id?: (order_by | null),elo_snapshot?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** response of any mutation on the table "draft_game_players" */ +export interface draft_game_players_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_game_playersGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "draft_game_players" */ +export interface draft_game_players_on_conflict {constraint: draft_game_players_constraint,update_columns?: draft_game_players_update_column[],where?: (draft_game_players_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_game_players". */ +export interface draft_game_players_order_by {draft_game?: (draft_games_order_by | null),draft_game_id?: (order_by | null),e_draft_game_player_status?: (e_draft_game_player_status_order_by | null),elo_snapshot?: (order_by | null),is_captain?: (order_by | null),joined_at?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),player?: (players_order_by | null),status?: (order_by | null),steam_id?: (order_by | null)} + + +/** primary key columns input for table: draft_game_players */ +export interface draft_game_players_pk_columns_input {draft_game_id: Scalars['uuid'],steam_id: Scalars['bigint']} + + +/** input type for updating data in table "draft_game_players" */ +export interface draft_game_players_set_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_game_players_stddev_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_pop on columns */ +export interface draft_game_players_stddev_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate stddev_samp on columns */ +export interface draft_game_players_stddev_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_stddev_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** Streaming cursor of the table "draft_game_players" */ +export interface draft_game_players_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_game_players_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_game_players_stream_cursor_value_input {draft_game_id?: (Scalars['uuid'] | null),elo_snapshot?: (Scalars['Int'] | null),is_captain?: (Scalars['Boolean'] | null),joined_at?: (Scalars['timestamptz'] | null),lineup?: (Scalars['Int'] | null),pick_order?: (Scalars['Int'] | null),status?: (e_draft_game_player_status_enum | null),steam_id?: (Scalars['bigint'] | null)} + + +/** aggregate sum on columns */ +export interface draft_game_players_sum_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_game_players" */ +export interface draft_game_players_sum_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + +export interface draft_game_players_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_game_players_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_game_players_set_input | null), +/** filter the rows which have to be updated */ +where: draft_game_players_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_game_players_var_pop_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_game_players" */ +export interface draft_game_players_var_pop_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate var_samp on columns */ +export interface draft_game_players_var_samp_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_game_players" */ +export interface draft_game_players_var_samp_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** aggregate variance on columns */ +export interface draft_game_players_variance_fieldsGenqlSelection{ + elo_snapshot?: boolean | number + lineup?: boolean | number + pick_order?: boolean | number + steam_id?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_game_players" */ +export interface draft_game_players_variance_order_by {elo_snapshot?: (order_by | null),lineup?: (order_by | null),pick_order?: (order_by | null),steam_id?: (order_by | null)} + + +/** columns and relationships of "draft_games" */ +export interface draft_gamesGenqlSelection{ + access?: boolean | number + capacity?: boolean | number + captain_selection?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + draft_order?: boolean | number + /** An object relationship */ + e_draft_game_captain_selection?: e_draft_game_captain_selectionGenqlSelection + /** An object relationship */ + e_draft_game_draft_order?: e_draft_game_draft_orderGenqlSelection + /** An object relationship */ + e_draft_game_mode?: e_draft_game_modeGenqlSelection + /** An object relationship */ + e_draft_game_status?: e_draft_game_statusGenqlSelection + /** An object relationship */ + e_lobby_access?: e_lobby_accessGenqlSelection + expires_at?: boolean | number + /** An object relationship */ + host?: playersGenqlSelection + host_steam_id?: boolean | number + id?: boolean | number + inner_squad?: boolean | number + invite_code?: boolean | number + /** An object relationship */ + map_pool?: map_poolsGenqlSelection + map_pool_id?: boolean | number + /** An object relationship */ + match?: matchesGenqlSelection + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + mode?: boolean | number + /** An object relationship */ + options?: match_optionsGenqlSelection + pick_deadline?: boolean | number + /** An array relationship */ + picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An aggregate relationship */ + picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** An array relationship */ + players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An aggregate relationship */ + players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + regions?: boolean | number + require_approval?: boolean | number + status?: boolean | number + /** An object relationship */ + team_1?: teamsGenqlSelection + team_1_id?: boolean | number + /** An object relationship */ + team_2?: teamsGenqlSelection + team_2_id?: boolean | number + type?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "draft_games" */ +export interface draft_games_aggregateGenqlSelection{ + aggregate?: draft_games_aggregate_fieldsGenqlSelection + nodes?: draft_gamesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface draft_games_aggregate_bool_exp {bool_and?: (draft_games_aggregate_bool_exp_bool_and | null),bool_or?: (draft_games_aggregate_bool_exp_bool_or | null),count?: (draft_games_aggregate_bool_exp_count | null)} + +export interface draft_games_aggregate_bool_exp_bool_and {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_games_aggregate_bool_exp_bool_or {arguments: draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns,distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Boolean_comparison_exp} + +export interface draft_games_aggregate_bool_exp_count {arguments?: (draft_games_select_column[] | null),distinct?: (Scalars['Boolean'] | null),filter?: (draft_games_bool_exp | null),predicate: Int_comparison_exp} + + +/** aggregate fields of "draft_games" */ +export interface draft_games_aggregate_fieldsGenqlSelection{ + avg?: draft_games_avg_fieldsGenqlSelection + count?: { __args: {columns?: (draft_games_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: draft_games_max_fieldsGenqlSelection + min?: draft_games_min_fieldsGenqlSelection + stddev?: draft_games_stddev_fieldsGenqlSelection + stddev_pop?: draft_games_stddev_pop_fieldsGenqlSelection + stddev_samp?: draft_games_stddev_samp_fieldsGenqlSelection + sum?: draft_games_sum_fieldsGenqlSelection + var_pop?: draft_games_var_pop_fieldsGenqlSelection + var_samp?: draft_games_var_samp_fieldsGenqlSelection + variance?: draft_games_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by aggregate values of table "draft_games" */ +export interface draft_games_aggregate_order_by {avg?: (draft_games_avg_order_by | null),count?: (order_by | null),max?: (draft_games_max_order_by | null),min?: (draft_games_min_order_by | null),stddev?: (draft_games_stddev_order_by | null),stddev_pop?: (draft_games_stddev_pop_order_by | null),stddev_samp?: (draft_games_stddev_samp_order_by | null),sum?: (draft_games_sum_order_by | null),var_pop?: (draft_games_var_pop_order_by | null),var_samp?: (draft_games_var_samp_order_by | null),variance?: (draft_games_variance_order_by | null)} + + +/** input type for inserting array relation for remote table "draft_games" */ +export interface draft_games_arr_rel_insert_input {data: draft_games_insert_input[], +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} + + +/** aggregate avg on columns */ +export interface draft_games_avg_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by avg() on columns of table "draft_games" */ +export interface draft_games_avg_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)} + + +/** Boolean expression to filter rows from the table "draft_games". All fields are combined with a logical 'AND'. */ +export interface draft_games_bool_exp {_and?: (draft_games_bool_exp[] | null),_not?: (draft_games_bool_exp | null),_or?: (draft_games_bool_exp[] | null),access?: (e_lobby_access_enum_comparison_exp | null),capacity?: (Int_comparison_exp | null),captain_selection?: (e_draft_game_captain_selection_enum_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_pick_lineup?: (Int_comparison_exp | null),draft_order?: (e_draft_game_draft_order_enum_comparison_exp | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_bool_exp | null),e_draft_game_draft_order?: (e_draft_game_draft_order_bool_exp | null),e_draft_game_mode?: (e_draft_game_mode_bool_exp | null),e_draft_game_status?: (e_draft_game_status_bool_exp | null),e_lobby_access?: (e_lobby_access_bool_exp | null),expires_at?: (timestamptz_comparison_exp | null),host?: (players_bool_exp | null),host_steam_id?: (bigint_comparison_exp | null),id?: (uuid_comparison_exp | null),inner_squad?: (Boolean_comparison_exp | null),invite_code?: (uuid_comparison_exp | null),map_pool?: (map_pools_bool_exp | null),map_pool_id?: (uuid_comparison_exp | null),match?: (matches_bool_exp | null),match_id?: (uuid_comparison_exp | null),match_options_id?: (uuid_comparison_exp | null),max_elo?: (Int_comparison_exp | null),min_elo?: (Int_comparison_exp | null),mode?: (e_draft_game_mode_enum_comparison_exp | null),options?: (match_options_bool_exp | null),pick_deadline?: (timestamptz_comparison_exp | null),picks?: (draft_game_picks_bool_exp | null),picks_aggregate?: (draft_game_picks_aggregate_bool_exp | null),players?: (draft_game_players_bool_exp | null),players_aggregate?: (draft_game_players_aggregate_bool_exp | null),regions?: (String_array_comparison_exp | null),require_approval?: (Boolean_comparison_exp | null),status?: (e_draft_game_status_enum_comparison_exp | null),team_1?: (teams_bool_exp | null),team_1_id?: (uuid_comparison_exp | null),team_2?: (teams_bool_exp | null),team_2_id?: (uuid_comparison_exp | null),type?: (e_match_types_enum_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "draft_games" */ +export interface draft_games_inc_input {capacity?: (Scalars['Int'] | null),current_pick_lineup?: (Scalars['Int'] | null),host_steam_id?: (Scalars['bigint'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "draft_games" */ +export interface draft_games_insert_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_obj_rel_insert_input | null),e_draft_game_draft_order?: (e_draft_game_draft_order_obj_rel_insert_input | null),e_draft_game_mode?: (e_draft_game_mode_obj_rel_insert_input | null),e_draft_game_status?: (e_draft_game_status_obj_rel_insert_input | null),e_lobby_access?: (e_lobby_access_obj_rel_insert_input | null),expires_at?: (Scalars['timestamptz'] | null),host?: (players_obj_rel_insert_input | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool?: (map_pools_obj_rel_insert_input | null),map_pool_id?: (Scalars['uuid'] | null),match?: (matches_obj_rel_insert_input | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),options?: (match_options_obj_rel_insert_input | null),pick_deadline?: (Scalars['timestamptz'] | null),picks?: (draft_game_picks_arr_rel_insert_input | null),players?: (draft_game_players_arr_rel_insert_input | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1?: (teams_obj_rel_insert_input | null),team_1_id?: (Scalars['uuid'] | null),team_2?: (teams_obj_rel_insert_input | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate max on columns */ +export interface draft_games_max_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by max() on columns of table "draft_games" */ +export interface draft_games_max_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** aggregate min on columns */ +export interface draft_games_min_fieldsGenqlSelection{ + capacity?: boolean | number + created_at?: boolean | number + current_pick_lineup?: boolean | number + expires_at?: boolean | number + host_steam_id?: boolean | number + id?: boolean | number + invite_code?: boolean | number + map_pool_id?: boolean | number + match_id?: boolean | number + match_options_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + pick_deadline?: boolean | number + regions?: boolean | number + team_1_id?: boolean | number + team_2_id?: boolean | number + updated_at?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by min() on columns of table "draft_games" */ +export interface draft_games_min_order_by {capacity?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),expires_at?: (order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),map_pool_id?: (order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),pick_deadline?: (order_by | null),regions?: (order_by | null),team_1_id?: (order_by | null),team_2_id?: (order_by | null),updated_at?: (order_by | null)} + + +/** response of any mutation on the table "draft_games" */ +export interface draft_games_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: draft_gamesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "draft_games" */ +export interface draft_games_obj_rel_insert_input {data: draft_games_insert_input, +/** upsert condition */ +on_conflict?: (draft_games_on_conflict | null)} + + +/** on_conflict condition type for table "draft_games" */ +export interface draft_games_on_conflict {constraint: draft_games_constraint,update_columns?: draft_games_update_column[],where?: (draft_games_bool_exp | null)} + + +/** Ordering options when selecting data from "draft_games". */ +export interface draft_games_order_by {access?: (order_by | null),capacity?: (order_by | null),captain_selection?: (order_by | null),created_at?: (order_by | null),current_pick_lineup?: (order_by | null),draft_order?: (order_by | null),e_draft_game_captain_selection?: (e_draft_game_captain_selection_order_by | null),e_draft_game_draft_order?: (e_draft_game_draft_order_order_by | null),e_draft_game_mode?: (e_draft_game_mode_order_by | null),e_draft_game_status?: (e_draft_game_status_order_by | null),e_lobby_access?: (e_lobby_access_order_by | null),expires_at?: (order_by | null),host?: (players_order_by | null),host_steam_id?: (order_by | null),id?: (order_by | null),inner_squad?: (order_by | null),invite_code?: (order_by | null),map_pool?: (map_pools_order_by | null),map_pool_id?: (order_by | null),match?: (matches_order_by | null),match_id?: (order_by | null),match_options_id?: (order_by | null),max_elo?: (order_by | null),min_elo?: (order_by | null),mode?: (order_by | null),options?: (match_options_order_by | null),pick_deadline?: (order_by | null),picks_aggregate?: (draft_game_picks_aggregate_order_by | null),players_aggregate?: (draft_game_players_aggregate_order_by | null),regions?: (order_by | null),require_approval?: (order_by | null),status?: (order_by | null),team_1?: (teams_order_by | null),team_1_id?: (order_by | null),team_2?: (teams_order_by | null),team_2_id?: (order_by | null),type?: (order_by | null),updated_at?: (order_by | null)} + + +/** primary key columns input for table: draft_games */ +export interface draft_games_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "draft_games" */ +export interface draft_games_set_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate stddev on columns */ +export interface draft_games_stddev_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev() on columns of table "draft_games" */ +export interface draft_games_stddev_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)} + + +/** aggregate stddev_pop on columns */ +export interface draft_games_stddev_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_pop() on columns of table "draft_games" */ +export interface draft_games_stddev_pop_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)} + + +/** aggregate stddev_samp on columns */ +export interface draft_games_stddev_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by stddev_samp() on columns of table "draft_games" */ +export interface draft_games_stddev_samp_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)} + + +/** Streaming cursor of the table "draft_games" */ +export interface draft_games_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: draft_games_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface draft_games_stream_cursor_value_input {access?: (e_lobby_access_enum | null),capacity?: (Scalars['Int'] | null),captain_selection?: (e_draft_game_captain_selection_enum | null),created_at?: (Scalars['timestamptz'] | null),current_pick_lineup?: (Scalars['Int'] | null),draft_order?: (e_draft_game_draft_order_enum | null),expires_at?: (Scalars['timestamptz'] | null),host_steam_id?: (Scalars['bigint'] | null),id?: (Scalars['uuid'] | null),inner_squad?: (Scalars['Boolean'] | null),invite_code?: (Scalars['uuid'] | null),map_pool_id?: (Scalars['uuid'] | null),match_id?: (Scalars['uuid'] | null),match_options_id?: (Scalars['uuid'] | null),max_elo?: (Scalars['Int'] | null),min_elo?: (Scalars['Int'] | null),mode?: (e_draft_game_mode_enum | null),pick_deadline?: (Scalars['timestamptz'] | null),regions?: (Scalars['String'][] | null),require_approval?: (Scalars['Boolean'] | null),status?: (e_draft_game_status_enum | null),team_1_id?: (Scalars['uuid'] | null),team_2_id?: (Scalars['uuid'] | null),type?: (e_match_types_enum | null),updated_at?: (Scalars['timestamptz'] | null)} + + +/** aggregate sum on columns */ +export interface draft_games_sum_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by sum() on columns of table "draft_games" */ +export interface draft_games_sum_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)} + +export interface draft_games_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (draft_games_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (draft_games_set_input | null), +/** filter the rows which have to be updated */ +where: draft_games_bool_exp} + + +/** aggregate var_pop on columns */ +export interface draft_games_var_pop_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_pop() on columns of table "draft_games" */ +export interface draft_games_var_pop_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)} + + +/** aggregate var_samp on columns */ +export interface draft_games_var_samp_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by var_samp() on columns of table "draft_games" */ +export interface draft_games_var_samp_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)} + + +/** aggregate variance on columns */ +export interface draft_games_variance_fieldsGenqlSelection{ + capacity?: boolean | number + current_pick_lineup?: boolean | number + host_steam_id?: boolean | number + max_elo?: boolean | number + min_elo?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** order by variance() on columns of table "draft_games" */ +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_check_in_settings" */ export interface e_check_in_settingsGenqlSelection{ description?: boolean | number @@ -27365,6 +29679,551 @@ _set?: (e_check_in_settings_set_input | null), where: e_check_in_settings_bool_exp} +/** columns and relationships of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selectionGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregateGenqlSelection{ + aggregate?: e_draft_game_captain_selection_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_captain_selectionGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_captain_selection_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_captain_selection_max_fieldsGenqlSelection + min?: e_draft_game_captain_selection_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_captain_selection". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_captain_selection_bool_exp {_and?: (e_draft_game_captain_selection_bool_exp[] | null),_not?: (e_draft_game_captain_selection_bool_exp | null),_or?: (e_draft_game_captain_selection_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_captain_selection_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_captain_selection_enum_comparison_exp {_eq?: (e_draft_game_captain_selection_enum | null),_in?: (e_draft_game_captain_selection_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_captain_selection_enum | null),_nin?: (e_draft_game_captain_selection_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_captain_selection_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_captain_selection_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_captain_selectionGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_obj_rel_insert_input {data: e_draft_game_captain_selection_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_on_conflict {constraint: e_draft_game_captain_selection_constraint,update_columns?: e_draft_game_captain_selection_update_column[],where?: (e_draft_game_captain_selection_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_captain_selection". */ +export interface e_draft_game_captain_selection_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_captain_selection */ +export interface e_draft_game_captain_selection_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_captain_selection" */ +export interface e_draft_game_captain_selection_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_captain_selection_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_captain_selection_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_captain_selection_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_captain_selection_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_captain_selection_bool_exp} + + +/** columns and relationships of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_orderGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregateGenqlSelection{ + aggregate?: e_draft_game_draft_order_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_draft_orderGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_draft_order_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_draft_order_max_fieldsGenqlSelection + min?: e_draft_game_draft_order_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_draft_order". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_draft_order_bool_exp {_and?: (e_draft_game_draft_order_bool_exp[] | null),_not?: (e_draft_game_draft_order_bool_exp | null),_or?: (e_draft_game_draft_order_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_draft_order_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_draft_order_enum_comparison_exp {_eq?: (e_draft_game_draft_order_enum | null),_in?: (e_draft_game_draft_order_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_draft_order_enum | null),_nin?: (e_draft_game_draft_order_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_draft_order_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_draft_order_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_draft_orderGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_obj_rel_insert_input {data: e_draft_game_draft_order_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_draft_order_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_on_conflict {constraint: e_draft_game_draft_order_constraint,update_columns?: e_draft_game_draft_order_update_column[],where?: (e_draft_game_draft_order_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_draft_order". */ +export interface e_draft_game_draft_order_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_draft_order */ +export interface e_draft_game_draft_order_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_draft_order" */ +export interface e_draft_game_draft_order_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_draft_order_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_draft_order_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_draft_order_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_draft_order_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_draft_order_bool_exp} + + +/** columns and relationships of "e_draft_game_mode" */ +export interface e_draft_game_modeGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregateGenqlSelection{ + aggregate?: e_draft_game_mode_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_modeGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_mode" */ +export interface e_draft_game_mode_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_mode_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_mode_max_fieldsGenqlSelection + min?: e_draft_game_mode_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_mode". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_mode_bool_exp {_and?: (e_draft_game_mode_bool_exp[] | null),_not?: (e_draft_game_mode_bool_exp | null),_or?: (e_draft_game_mode_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_mode_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_mode_enum_comparison_exp {_eq?: (e_draft_game_mode_enum | null),_in?: (e_draft_game_mode_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_mode_enum | null),_nin?: (e_draft_game_mode_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_mode" */ +export interface e_draft_game_mode_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_mode_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_mode_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_mode" */ +export interface e_draft_game_mode_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_modeGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_mode" */ +export interface e_draft_game_mode_obj_rel_insert_input {data: e_draft_game_mode_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_mode_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_mode" */ +export interface e_draft_game_mode_on_conflict {constraint: e_draft_game_mode_constraint,update_columns?: e_draft_game_mode_update_column[],where?: (e_draft_game_mode_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_mode". */ +export interface e_draft_game_mode_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_mode */ +export interface e_draft_game_mode_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_mode" */ +export interface e_draft_game_mode_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_mode" */ +export interface e_draft_game_mode_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_mode_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_mode_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_mode_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_mode_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_mode_bool_exp} + + +/** columns and relationships of "e_draft_game_player_status" */ +export interface e_draft_game_player_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_player_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_player_status" */ +export interface e_draft_game_player_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_player_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_player_status_max_fieldsGenqlSelection + min?: e_draft_game_player_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_player_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_player_status_bool_exp {_and?: (e_draft_game_player_status_bool_exp[] | null),_not?: (e_draft_game_player_status_bool_exp | null),_or?: (e_draft_game_player_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_player_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_player_status_enum_comparison_exp {_eq?: (e_draft_game_player_status_enum | null),_in?: (e_draft_game_player_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_player_status_enum | null),_nin?: (e_draft_game_player_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_player_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_player_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_player_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_obj_rel_insert_input {data: e_draft_game_player_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_player_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_on_conflict {constraint: e_draft_game_player_status_constraint,update_columns?: e_draft_game_player_status_update_column[],where?: (e_draft_game_player_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_player_status". */ +export interface e_draft_game_player_status_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_player_status */ +export interface e_draft_game_player_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_player_status" */ +export interface e_draft_game_player_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_player_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_player_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_player_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_player_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_player_status_bool_exp} + + +/** columns and relationships of "e_draft_game_status" */ +export interface e_draft_game_statusGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "e_draft_game_status" */ +export interface e_draft_game_status_aggregateGenqlSelection{ + aggregate?: e_draft_game_status_aggregate_fieldsGenqlSelection + nodes?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "e_draft_game_status" */ +export interface e_draft_game_status_aggregate_fieldsGenqlSelection{ + count?: { __args: {columns?: (e_draft_game_status_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: e_draft_game_status_max_fieldsGenqlSelection + min?: e_draft_game_status_min_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "e_draft_game_status". All fields are combined with a logical 'AND'. */ +export interface e_draft_game_status_bool_exp {_and?: (e_draft_game_status_bool_exp[] | null),_not?: (e_draft_game_status_bool_exp | null),_or?: (e_draft_game_status_bool_exp[] | null),description?: (String_comparison_exp | null),value?: (String_comparison_exp | null)} + + +/** Boolean expression to compare columns of type "e_draft_game_status_enum". All fields are combined with logical 'AND'. */ +export interface e_draft_game_status_enum_comparison_exp {_eq?: (e_draft_game_status_enum | null),_in?: (e_draft_game_status_enum[] | null),_is_null?: (Scalars['Boolean'] | null),_neq?: (e_draft_game_status_enum | null),_nin?: (e_draft_game_status_enum[] | null)} + + +/** input type for inserting data into table "e_draft_game_status" */ +export interface e_draft_game_status_insert_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface e_draft_game_status_max_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface e_draft_game_status_min_fieldsGenqlSelection{ + description?: boolean | number + value?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "e_draft_game_status" */ +export interface e_draft_game_status_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: e_draft_game_statusGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** input type for inserting object relation for remote table "e_draft_game_status" */ +export interface e_draft_game_status_obj_rel_insert_input {data: e_draft_game_status_insert_input, +/** upsert condition */ +on_conflict?: (e_draft_game_status_on_conflict | null)} + + +/** on_conflict condition type for table "e_draft_game_status" */ +export interface e_draft_game_status_on_conflict {constraint: e_draft_game_status_constraint,update_columns?: e_draft_game_status_update_column[],where?: (e_draft_game_status_bool_exp | null)} + + +/** Ordering options when selecting data from "e_draft_game_status". */ +export interface e_draft_game_status_order_by {description?: (order_by | null),value?: (order_by | null)} + + +/** primary key columns input for table: e_draft_game_status */ +export interface e_draft_game_status_pk_columns_input {value: Scalars['String']} + + +/** input type for updating data in table "e_draft_game_status" */ +export interface e_draft_game_status_set_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + + +/** Streaming cursor of the table "e_draft_game_status" */ +export interface e_draft_game_status_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: e_draft_game_status_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface e_draft_game_status_stream_cursor_value_input {description?: (Scalars['String'] | null),value?: (Scalars['String'] | null)} + +export interface e_draft_game_status_updates { +/** sets the columns of the filtered rows to the given values */ +_set?: (e_draft_game_status_set_input | null), +/** filter the rows which have to be updated */ +where: e_draft_game_status_bool_exp} + + /** columns and relationships of "e_friend_status" */ export interface e_friend_statusGenqlSelection{ description?: boolean | number @@ -36564,6 +39423,30 @@ export interface matchesGenqlSelection{ order_by?: (match_map_demos_order_by[] | null), /** filter the rows returned */ where?: (match_map_demos_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) /** An object relationship */ e_match_status?: e_match_statusGenqlSelection /** An object relationship */ @@ -37073,7 +39956,7 @@ export interface matches_avg_order_by {organizer_steam_id?: (order_by | null)} /** Boolean expression to filter rows from the table "matches". All fields are combined with a logical 'AND'. */ -export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (match_invites_bool_exp | null),invites_aggregate?: (match_invites_aggregate_bool_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} +export interface matches_bool_exp {_and?: (matches_bool_exp[] | null),_not?: (matches_bool_exp | null),_or?: (matches_bool_exp[] | null),can_assign_server?: (Boolean_comparison_exp | null),can_cancel?: (Boolean_comparison_exp | null),can_check_in?: (Boolean_comparison_exp | null),can_reassign_winner?: (Boolean_comparison_exp | null),can_schedule?: (Boolean_comparison_exp | null),can_start?: (Boolean_comparison_exp | null),can_stream_live?: (Boolean_comparison_exp | null),can_stream_tv?: (Boolean_comparison_exp | null),cancels_at?: (timestamptz_comparison_exp | null),clutches?: (v_match_clutches_bool_exp | null),clutches_aggregate?: (v_match_clutches_aggregate_bool_exp | null),connection_link?: (String_comparison_exp | null),connection_string?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),current_match_map_id?: (uuid_comparison_exp | null),demos?: (match_map_demos_bool_exp | null),demos_aggregate?: (match_map_demos_aggregate_bool_exp | null),draft_games?: (draft_games_bool_exp | null),draft_games_aggregate?: (draft_games_aggregate_bool_exp | null),e_match_status?: (e_match_status_bool_exp | null),e_region?: (server_regions_bool_exp | null),effective_at?: (timestamptz_comparison_exp | null),elo_changes?: (v_player_elo_bool_exp | null),elo_changes_aggregate?: (v_player_elo_aggregate_bool_exp | null),ended_at?: (timestamptz_comparison_exp | null),external_id?: (String_comparison_exp | null),id?: (uuid_comparison_exp | null),invite_code?: (String_comparison_exp | null),invites?: (match_invites_bool_exp | null),invites_aggregate?: (match_invites_aggregate_bool_exp | null),is_captain?: (Boolean_comparison_exp | null),is_coach?: (Boolean_comparison_exp | null),is_friend_in_match_lineup?: (Boolean_comparison_exp | null),is_in_lineup?: (Boolean_comparison_exp | null),is_match_server_available?: (Boolean_comparison_exp | null),is_organizer?: (Boolean_comparison_exp | null),is_server_online?: (Boolean_comparison_exp | null),is_tournament_match?: (Boolean_comparison_exp | null),label?: (String_comparison_exp | null),lineup_1?: (match_lineups_bool_exp | null),lineup_1_id?: (uuid_comparison_exp | null),lineup_2?: (match_lineups_bool_exp | null),lineup_2_id?: (uuid_comparison_exp | null),lineup_counts?: (json_comparison_exp | null),map_veto_picking_lineup_id?: (uuid_comparison_exp | null),map_veto_picks?: (match_map_veto_picks_bool_exp | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_bool_exp | null),map_veto_type?: (String_comparison_exp | null),match_maps?: (match_maps_bool_exp | null),match_maps_aggregate?: (match_maps_aggregate_bool_exp | null),match_options_id?: (uuid_comparison_exp | null),max_players_per_lineup?: (Int_comparison_exp | null),min_players_per_lineup?: (Int_comparison_exp | null),opening_duels?: (v_match_player_opening_duels_bool_exp | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_bool_exp | null),options?: (match_options_bool_exp | null),organizer?: (players_bool_exp | null),organizer_steam_id?: (bigint_comparison_exp | null),password?: (String_comparison_exp | null),player_assists?: (player_assists_bool_exp | null),player_assists_aggregate?: (player_assists_aggregate_bool_exp | null),player_damages?: (player_damages_bool_exp | null),player_damages_aggregate?: (player_damages_aggregate_bool_exp | null),player_flashes?: (player_flashes_bool_exp | null),player_flashes_aggregate?: (player_flashes_aggregate_bool_exp | null),player_kills?: (player_kills_bool_exp | null),player_kills_aggregate?: (player_kills_aggregate_bool_exp | null),player_objectives?: (player_objectives_bool_exp | null),player_objectives_aggregate?: (player_objectives_aggregate_bool_exp | null),player_unused_utilities?: (player_unused_utility_bool_exp | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_bool_exp | null),player_utility?: (player_utility_bool_exp | null),player_utility_aggregate?: (player_utility_aggregate_bool_exp | null),region?: (String_comparison_exp | null),region_veto_picking_lineup_id?: (uuid_comparison_exp | null),region_veto_picks?: (match_region_veto_picks_bool_exp | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_bool_exp | null),requested_organizer?: (Boolean_comparison_exp | null),scheduled_at?: (timestamptz_comparison_exp | null),server?: (servers_bool_exp | null),server_error?: (String_comparison_exp | null),server_id?: (uuid_comparison_exp | null),server_region?: (String_comparison_exp | null),server_type?: (String_comparison_exp | null),source?: (String_comparison_exp | null),started_at?: (timestamptz_comparison_exp | null),status?: (e_match_status_enum_comparison_exp | null),streams?: (match_streams_bool_exp | null),streams_aggregate?: (match_streams_aggregate_bool_exp | null),teams?: (teams_bool_exp | null),tournament_brackets?: (tournament_brackets_bool_exp | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_bool_exp | null),tv_connection_string?: (String_comparison_exp | null),winner?: (match_lineups_bool_exp | null),winning_lineup_id?: (uuid_comparison_exp | null)} /** input type for incrementing numeric columns in table "matches" */ @@ -37081,7 +39964,7 @@ export interface matches_inc_input {organizer_steam_id?: (Scalars['bigint'] | nu /** input type for inserting data into table "matches" */ -export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invites?: (match_invites_arr_rel_insert_input | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} +export interface matches_insert_input {cancels_at?: (Scalars['timestamptz'] | null),clutches?: (v_match_clutches_arr_rel_insert_input | null),created_at?: (Scalars['timestamptz'] | null),demos?: (match_map_demos_arr_rel_insert_input | null),draft_games?: (draft_games_arr_rel_insert_input | null),e_match_status?: (e_match_status_obj_rel_insert_input | null),e_region?: (server_regions_obj_rel_insert_input | null),elo_changes?: (v_player_elo_arr_rel_insert_input | null),ended_at?: (Scalars['timestamptz'] | null),external_id?: (Scalars['String'] | null),id?: (Scalars['uuid'] | null),invites?: (match_invites_arr_rel_insert_input | null),label?: (Scalars['String'] | null),lineup_1?: (match_lineups_obj_rel_insert_input | null),lineup_1_id?: (Scalars['uuid'] | null),lineup_2?: (match_lineups_obj_rel_insert_input | null),lineup_2_id?: (Scalars['uuid'] | null),map_veto_picks?: (match_map_veto_picks_arr_rel_insert_input | null),match_maps?: (match_maps_arr_rel_insert_input | null),match_options_id?: (Scalars['uuid'] | null),opening_duels?: (v_match_player_opening_duels_arr_rel_insert_input | null),options?: (match_options_obj_rel_insert_input | null),organizer?: (players_obj_rel_insert_input | null),organizer_steam_id?: (Scalars['bigint'] | null),password?: (Scalars['String'] | null),player_assists?: (player_assists_arr_rel_insert_input | null),player_damages?: (player_damages_arr_rel_insert_input | null),player_flashes?: (player_flashes_arr_rel_insert_input | null),player_kills?: (player_kills_arr_rel_insert_input | null),player_objectives?: (player_objectives_arr_rel_insert_input | null),player_unused_utilities?: (player_unused_utility_arr_rel_insert_input | null),player_utility?: (player_utility_arr_rel_insert_input | null),region?: (Scalars['String'] | null),region_veto_picks?: (match_region_veto_picks_arr_rel_insert_input | null),scheduled_at?: (Scalars['timestamptz'] | null),server?: (servers_obj_rel_insert_input | null),server_error?: (Scalars['String'] | null),server_id?: (Scalars['uuid'] | null),source?: (Scalars['String'] | null),started_at?: (Scalars['timestamptz'] | null),status?: (e_match_status_enum | null),streams?: (match_streams_arr_rel_insert_input | null),tournament_brackets?: (tournament_brackets_arr_rel_insert_input | null),winner?: (match_lineups_obj_rel_insert_input | null),winning_lineup_id?: (Scalars['uuid'] | null)} /** aggregate max on columns */ @@ -37214,7 +40097,7 @@ export interface matches_on_conflict {constraint: matches_constraint,update_colu /** Ordering options when selecting data from "matches". */ -export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (match_invites_aggregate_order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} +export interface matches_order_by {can_assign_server?: (order_by | null),can_cancel?: (order_by | null),can_check_in?: (order_by | null),can_reassign_winner?: (order_by | null),can_schedule?: (order_by | null),can_start?: (order_by | null),can_stream_live?: (order_by | null),can_stream_tv?: (order_by | null),cancels_at?: (order_by | null),clutches_aggregate?: (v_match_clutches_aggregate_order_by | null),connection_link?: (order_by | null),connection_string?: (order_by | null),created_at?: (order_by | null),current_match_map_id?: (order_by | null),demos_aggregate?: (match_map_demos_aggregate_order_by | null),draft_games_aggregate?: (draft_games_aggregate_order_by | null),e_match_status?: (e_match_status_order_by | null),e_region?: (server_regions_order_by | null),effective_at?: (order_by | null),elo_changes_aggregate?: (v_player_elo_aggregate_order_by | null),ended_at?: (order_by | null),external_id?: (order_by | null),id?: (order_by | null),invite_code?: (order_by | null),invites_aggregate?: (match_invites_aggregate_order_by | null),is_captain?: (order_by | null),is_coach?: (order_by | null),is_friend_in_match_lineup?: (order_by | null),is_in_lineup?: (order_by | null),is_match_server_available?: (order_by | null),is_organizer?: (order_by | null),is_server_online?: (order_by | null),is_tournament_match?: (order_by | null),label?: (order_by | null),lineup_1?: (match_lineups_order_by | null),lineup_1_id?: (order_by | null),lineup_2?: (match_lineups_order_by | null),lineup_2_id?: (order_by | null),lineup_counts?: (order_by | null),map_veto_picking_lineup_id?: (order_by | null),map_veto_picks_aggregate?: (match_map_veto_picks_aggregate_order_by | null),map_veto_type?: (order_by | null),match_maps_aggregate?: (match_maps_aggregate_order_by | null),match_options_id?: (order_by | null),max_players_per_lineup?: (order_by | null),min_players_per_lineup?: (order_by | null),opening_duels_aggregate?: (v_match_player_opening_duels_aggregate_order_by | null),options?: (match_options_order_by | null),organizer?: (players_order_by | null),organizer_steam_id?: (order_by | null),password?: (order_by | null),player_assists_aggregate?: (player_assists_aggregate_order_by | null),player_damages_aggregate?: (player_damages_aggregate_order_by | null),player_flashes_aggregate?: (player_flashes_aggregate_order_by | null),player_kills_aggregate?: (player_kills_aggregate_order_by | null),player_objectives_aggregate?: (player_objectives_aggregate_order_by | null),player_unused_utilities_aggregate?: (player_unused_utility_aggregate_order_by | null),player_utility_aggregate?: (player_utility_aggregate_order_by | null),region?: (order_by | null),region_veto_picking_lineup_id?: (order_by | null),region_veto_picks_aggregate?: (match_region_veto_picks_aggregate_order_by | null),requested_organizer?: (order_by | null),scheduled_at?: (order_by | null),server?: (servers_order_by | null),server_error?: (order_by | null),server_id?: (order_by | null),server_region?: (order_by | null),server_type?: (order_by | null),source?: (order_by | null),started_at?: (order_by | null),status?: (order_by | null),streams_aggregate?: (match_streams_aggregate_order_by | null),teams_aggregate?: (teams_aggregate_order_by | null),tournament_brackets_aggregate?: (tournament_brackets_aggregate_order_by | null),tv_connection_string?: (order_by | null),winner?: (match_lineups_order_by | null),winning_lineup_id?: (order_by | null)} /** primary key columns input for table: matches */ @@ -37492,6 +40375,8 @@ export interface mutation_rootGenqlSelection{ /** Spawn a clip-render pod that produces an mp4 from a demo and uploads it */ createClipRender?: (CreateClipRenderOutputGenqlSelection & { __args: {spec: ClipSpecInput} }) createClips?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid']} }) + /** createDraftGame */ + createDraftGame?: (CreateDraftGameOutputGenqlSelection & { __args: {settings: Scalars['jsonb']} }) /** Create directory on game server */ createServerDirectory?: (SuccessOutputGenqlSelection & { __args: {dir_path: Scalars['String'], node_id: Scalars['String'], server_id?: (Scalars['String'] | null)} }) /** Delete a saved clip and its underlying S3 object */ @@ -37533,12 +40418,60 @@ export interface mutation_rootGenqlSelection{ where: db_backups_bool_exp} }) /** delete single row from the table: "db_backups" */ delete_db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_picks" */ + delete_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_picks_bool_exp} }) + /** delete single row from the table: "draft_game_picks" */ + delete_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** delete data from the table: "draft_game_players" */ + delete_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: draft_game_players_bool_exp} }) + /** delete single row from the table: "draft_game_players" */ + delete_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** delete data from the table: "draft_games" */ + delete_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + 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_check_in_settings" */ delete_e_check_in_settings?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ where: e_check_in_settings_bool_exp} }) /** delete single row from the table: "e_check_in_settings" */ delete_e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_captain_selection_bool_exp} }) + /** delete single row from the table: "e_draft_game_captain_selection" */ + delete_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_draft_order_bool_exp} }) + /** delete single row from the table: "e_draft_game_draft_order" */ + delete_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_mode_bool_exp} }) + /** delete single row from the table: "e_draft_game_mode" */ + delete_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_player_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_player_status" */ + delete_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** delete data from the table: "e_draft_game_status" */ + delete_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: e_draft_game_status_bool_exp} }) + /** delete single row from the table: "e_draft_game_status" */ + delete_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** delete data from the table: "e_friend_status" */ delete_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -37841,6 +40774,12 @@ export interface mutation_rootGenqlSelection{ delete_my_friends?: (my_friends_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ where: my_friends_bool_exp} }) + /** delete data from the table: "news_articles" */ + delete_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** filter the rows which have to be deleted */ + where: news_articles_bool_exp} }) + /** delete single row from the table: "news_articles" */ + delete_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** delete data from the table: "notifications" */ delete_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** filter the rows which have to be deleted */ @@ -38102,6 +41041,8 @@ export interface mutation_rootGenqlSelection{ /** delete single row from the table: "v_team_stage_results" */ delete_v_team_stage_results_by_pk?: (v_team_stage_resultsGenqlSelection & { __args: {tournament_stage_id: Scalars['uuid'], tournament_team_id: Scalars['uuid']} }) denyInvite?: (SuccessOutputGenqlSelection & { __args: {invite_id: Scalars['uuid'], type: Scalars['String']} }) + /** extendDraftGame */ + extendDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid']} }) forfeitMatch?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['uuid'], winning_lineup_id: Scalars['uuid']} }) /** Live pod GSI snapshot — slots, sides, alive/dead. Drives the stream-deck. */ getLiveStreamSpecState?: (LiveStreamSpecStateGenqlSelection & { __args: {match_id: Scalars['uuid']} }) @@ -38166,6 +41107,42 @@ export interface mutation_rootGenqlSelection{ object: db_backups_insert_input, /** upsert condition */ on_conflict?: (db_backups_on_conflict | null)} }) + /** insert data into the table: "draft_game_picks" */ + insert_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_picks_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_picks" */ + insert_draft_game_picks_one?: (draft_game_picksGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_picks_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_picks_on_conflict | null)} }) + /** insert data into the table: "draft_game_players" */ + insert_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_game_players_insert_input[], + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert a single row into the table: "draft_game_players" */ + insert_draft_game_players_one?: (draft_game_playersGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_game_players_insert_input, + /** upsert condition */ + on_conflict?: (draft_game_players_on_conflict | null)} }) + /** insert data into the table: "draft_games" */ + insert_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: draft_games_insert_input[], + /** upsert condition */ + on_conflict?: (draft_games_on_conflict | null)} }) + /** insert a single row into the table: "draft_games" */ + insert_draft_games_one?: (draft_gamesGenqlSelection & { __args: { + /** the row to be inserted */ + object: draft_games_insert_input, + /** upsert condition */ + on_conflict?: (draft_games_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 */ @@ -38178,6 +41155,66 @@ export interface mutation_rootGenqlSelection{ object: e_check_in_settings_insert_input, /** upsert condition */ on_conflict?: (e_check_in_settings_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_captain_selection_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_captain_selection" */ + insert_e_draft_game_captain_selection_one?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_captain_selection_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_captain_selection_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_draft_order_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_draft_order" */ + insert_e_draft_game_draft_order_one?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_draft_order_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_draft_order_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_mode_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_mode" */ + insert_e_draft_game_mode_one?: (e_draft_game_modeGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_mode_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_mode_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_player_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_player_status" */ + insert_e_draft_game_player_status_one?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_player_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_player_status_on_conflict | null)} }) + /** insert data into the table: "e_draft_game_status" */ + insert_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: e_draft_game_status_insert_input[], + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) + /** insert a single row into the table: "e_draft_game_status" */ + insert_e_draft_game_status_one?: (e_draft_game_statusGenqlSelection & { __args: { + /** the row to be inserted */ + object: e_draft_game_status_insert_input, + /** upsert condition */ + on_conflict?: (e_draft_game_status_on_conflict | null)} }) /** insert data into the table: "e_friend_status" */ insert_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -38782,6 +41819,18 @@ export interface mutation_rootGenqlSelection{ insert_my_friends_one?: (my_friendsGenqlSelection & { __args: { /** the row to be inserted */ object: my_friends_insert_input} }) + /** insert data into the table: "news_articles" */ + insert_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** the rows to be inserted */ + objects: news_articles_insert_input[], + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) + /** insert a single row into the table: "news_articles" */ + insert_news_articles_one?: (news_articlesGenqlSelection & { __args: { + /** the row to be inserted */ + object: news_articles_insert_input, + /** upsert condition */ + on_conflict?: (news_articles_on_conflict | null)} }) /** insert data into the table: "notifications" */ insert_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** the rows to be inserted */ @@ -39302,6 +42351,10 @@ export interface mutation_rootGenqlSelection{ object: v_team_stage_results_insert_input, /** upsert condition */ on_conflict?: (v_team_stage_results_on_conflict | null)} }) + /** joinDraftGame */ + joinDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) + /** joinDraftGameAsParty */ + joinDraftGameAsParty?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], inviteCode?: (Scalars['String'] | null)} }) joinLineup?: (SuccessOutputGenqlSelection & { __args: {code?: (Scalars['String'] | null), lineup_id: Scalars['String'], match_id: Scalars['String']} }) kickServerPlayer?: (KickResultGenqlSelection & { __args: {reason?: (Scalars['String'] | null), serverId: Scalars['String'], steam_id: Scalars['String']} }) leaveLineup?: (SuccessOutputGenqlSelection & { __args: {match_id: Scalars['String']} }) @@ -39356,6 +42409,8 @@ export interface mutation_rootGenqlSelection{ requestNameChange?: (SuccessOutputGenqlSelection & { __args: {name: Scalars['String'], steam_id: Scalars['bigint']} }) /** Reset a terminal-state clip_render_jobs row back to queued and re-enqueue the batch worker (admin only). */ requeueClipRender?: (SuccessOutputGenqlSelection & { __args: {job_id: Scalars['uuid']} }) + /** Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. */ + rescanTldrNews?: SuccessOutputGenqlSelection restartService?: (SuccessOutputGenqlSelection & { __args: {service: Scalars['String']} }) /** Clear paused flag and re-enqueue remaining queued clip_render_jobs. */ resumeClipRenderBatch?: (SuccessOutputGenqlSelection & { __args: {match_map_id: Scalars['uuid']} }) @@ -39405,6 +42460,8 @@ export interface mutation_rootGenqlSelection{ /** Owner-only patch for clip title / visibility / target_steam_id. */ updateClip?: (SuccessOutputGenqlSelection & { __args: {clip_id: Scalars['uuid'], target_steam_id?: (Scalars['String'] | null), title?: (Scalars['String'] | null), visibility?: (Scalars['String'] | null)} }) updateCs?: (SuccessOutputGenqlSelection & { __args?: {game?: (Scalars['String'] | null), game_server_node_id?: (Scalars['uuid'] | null)} }) + /** updateDraftGame */ + updateDraftGame?: (SuccessOutputGenqlSelection & { __args: {draftGameId: Scalars['uuid'], settings: Scalars['jsonb']} }) updateServices?: SuccessOutputGenqlSelection /** update data of the table: "_map_pool" */ update__map_pool?: (_map_pool_mutation_responseGenqlSelection & { __args: { @@ -39512,6 +42569,60 @@ export interface mutation_rootGenqlSelection{ update_db_backups_many?: (db_backups_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: db_backups_updates[]} }) + /** update data of the table: "draft_game_picks" */ + update_draft_game_picks?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), + /** filter the rows which have to be updated */ + where: draft_game_picks_bool_exp} }) + /** update single row of the table: "draft_game_picks" */ + update_draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_picks_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_picks_set_input | null), pk_columns: draft_game_picks_pk_columns_input} }) + /** update multiples rows of table: "draft_game_picks" */ + update_draft_game_picks_many?: (draft_game_picks_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_picks_updates[]} }) + /** update data of the table: "draft_game_players" */ + update_draft_game_players?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_players_set_input | null), + /** filter the rows which have to be updated */ + where: draft_game_players_bool_exp} }) + /** update single row of the table: "draft_game_players" */ + update_draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_game_players_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_game_players_set_input | null), pk_columns: draft_game_players_pk_columns_input} }) + /** update multiples rows of table: "draft_game_players" */ + update_draft_game_players_many?: (draft_game_players_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_game_players_updates[]} }) + /** update data of the table: "draft_games" */ + update_draft_games?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_games_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_games_set_input | null), + /** filter the rows which have to be updated */ + where: draft_games_bool_exp} }) + /** update single row of the table: "draft_games" */ + update_draft_games_by_pk?: (draft_gamesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (draft_games_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (draft_games_set_input | null), pk_columns: draft_games_pk_columns_input} }) + /** update multiples rows of table: "draft_games" */ + update_draft_games_many?: (draft_games_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: draft_games_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 */ @@ -39526,6 +42637,76 @@ export interface mutation_rootGenqlSelection{ update_e_check_in_settings_many?: (e_check_in_settings_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: e_check_in_settings_updates[]} }) + /** update data of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_captain_selection_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_captain_selection_bool_exp} }) + /** update single row of the table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_captain_selection_set_input | null), pk_columns: e_draft_game_captain_selection_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_captain_selection" */ + update_e_draft_game_captain_selection_many?: (e_draft_game_captain_selection_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_captain_selection_updates[]} }) + /** update data of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_draft_order_bool_exp} }) + /** update single row of the table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_draft_order_set_input | null), pk_columns: e_draft_game_draft_order_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_draft_order" */ + update_e_draft_game_draft_order_many?: (e_draft_game_draft_order_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_draft_order_updates[]} }) + /** update data of the table: "e_draft_game_mode" */ + update_e_draft_game_mode?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_mode_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_mode_bool_exp} }) + /** update single row of the table: "e_draft_game_mode" */ + update_e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_mode_set_input | null), pk_columns: e_draft_game_mode_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_mode" */ + update_e_draft_game_mode_many?: (e_draft_game_mode_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_mode_updates[]} }) + /** update data of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_player_status_bool_exp} }) + /** update single row of the table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_player_status_set_input | null), pk_columns: e_draft_game_player_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_player_status" */ + update_e_draft_game_player_status_many?: (e_draft_game_player_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_player_status_updates[]} }) + /** update data of the table: "e_draft_game_status" */ + update_e_draft_game_status?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_status_set_input | null), + /** filter the rows which have to be updated */ + where: e_draft_game_status_bool_exp} }) + /** update single row of the table: "e_draft_game_status" */ + update_e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: { + /** sets the columns of the filtered rows to the given values */ + _set?: (e_draft_game_status_set_input | null), pk_columns: e_draft_game_status_pk_columns_input} }) + /** update multiples rows of table: "e_draft_game_status" */ + update_e_draft_game_status_many?: (e_draft_game_status_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: e_draft_game_status_updates[]} }) /** update data of the table: "e_friend_status" */ update_e_friend_status?: (e_friend_status_mutation_responseGenqlSelection & { __args: { /** sets the columns of the filtered rows to the given values */ @@ -40430,6 +43611,24 @@ export interface mutation_rootGenqlSelection{ update_my_friends_many?: (my_friends_mutation_responseGenqlSelection & { __args: { /** updates to execute, in order */ updates: my_friends_updates[]} }) + /** update data of the table: "news_articles" */ + update_news_articles?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), + /** filter the rows which have to be updated */ + where: news_articles_bool_exp} }) + /** update single row of the table: "news_articles" */ + update_news_articles_by_pk?: (news_articlesGenqlSelection & { __args: { + /** increments the numeric columns with given value of the filtered values */ + _inc?: (news_articles_inc_input | null), + /** sets the columns of the filtered rows to the given values */ + _set?: (news_articles_set_input | null), pk_columns: news_articles_pk_columns_input} }) + /** update multiples rows of table: "news_articles" */ + update_news_articles_many?: (news_articles_mutation_responseGenqlSelection & { __args: { + /** updates to execute, in order */ + updates: news_articles_updates[]} }) /** update data of the table: "notifications" */ update_notifications?: (notifications_mutation_responseGenqlSelection & { __args: { /** append existing jsonb value of filtered columns with new jsonb value */ @@ -41553,6 +44752,219 @@ export interface my_friends_variance_fieldsGenqlSelection{ export interface my_friends_variance_order_by {friend_steam_id?: (order_by | null),invited_by_steam_id?: (order_by | null),steam_id?: (order_by | null)} +/** columns and relationships of "news_articles" */ +export interface news_articlesGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregated selection of "news_articles" */ +export interface news_articles_aggregateGenqlSelection{ + aggregate?: news_articles_aggregate_fieldsGenqlSelection + nodes?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate fields of "news_articles" */ +export interface news_articles_aggregate_fieldsGenqlSelection{ + avg?: news_articles_avg_fieldsGenqlSelection + count?: { __args: {columns?: (news_articles_select_column[] | null), distinct?: (Scalars['Boolean'] | null)} } | boolean | number + max?: news_articles_max_fieldsGenqlSelection + min?: news_articles_min_fieldsGenqlSelection + stddev?: news_articles_stddev_fieldsGenqlSelection + stddev_pop?: news_articles_stddev_pop_fieldsGenqlSelection + stddev_samp?: news_articles_stddev_samp_fieldsGenqlSelection + sum?: news_articles_sum_fieldsGenqlSelection + var_pop?: news_articles_var_pop_fieldsGenqlSelection + var_samp?: news_articles_var_samp_fieldsGenqlSelection + variance?: news_articles_variance_fieldsGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate avg on columns */ +export interface news_articles_avg_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Boolean expression to filter rows from the table "news_articles". All fields are combined with a logical 'AND'. */ +export interface news_articles_bool_exp {_and?: (news_articles_bool_exp[] | null),_not?: (news_articles_bool_exp | null),_or?: (news_articles_bool_exp[] | null),author?: (String_comparison_exp | null),content_html?: (String_comparison_exp | null),cover_image_url?: (String_comparison_exp | null),created_at?: (timestamptz_comparison_exp | null),id?: (uuid_comparison_exp | null),issue_number?: (Int_comparison_exp | null),published_at?: (timestamptz_comparison_exp | null),scraped_at?: (timestamptz_comparison_exp | null),slug?: (String_comparison_exp | null),source?: (String_comparison_exp | null),teaser?: (String_comparison_exp | null),title?: (String_comparison_exp | null),updated_at?: (timestamptz_comparison_exp | null),url?: (String_comparison_exp | null)} + + +/** input type for incrementing numeric columns in table "news_articles" */ +export interface news_articles_inc_input {issue_number?: (Scalars['Int'] | null)} + + +/** input type for inserting data into table "news_articles" */ +export interface news_articles_insert_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate max on columns */ +export interface news_articles_max_fieldsGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate min on columns */ +export interface news_articles_min_fieldsGenqlSelection{ + author?: boolean | number + content_html?: boolean | number + cover_image_url?: boolean | number + created_at?: boolean | number + id?: boolean | number + issue_number?: boolean | number + published_at?: boolean | number + scraped_at?: boolean | number + slug?: boolean | number + source?: boolean | number + teaser?: boolean | number + title?: boolean | number + updated_at?: boolean | number + url?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** response of any mutation on the table "news_articles" */ +export interface news_articles_mutation_responseGenqlSelection{ + /** number of rows affected by the mutation */ + affected_rows?: boolean | number + /** data from the rows affected by the mutation */ + returning?: news_articlesGenqlSelection + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** on_conflict condition type for table "news_articles" */ +export interface news_articles_on_conflict {constraint: news_articles_constraint,update_columns?: news_articles_update_column[],where?: (news_articles_bool_exp | null)} + + +/** Ordering options when selecting data from "news_articles". */ +export interface news_articles_order_by {author?: (order_by | null),content_html?: (order_by | null),cover_image_url?: (order_by | null),created_at?: (order_by | null),id?: (order_by | null),issue_number?: (order_by | null),published_at?: (order_by | null),scraped_at?: (order_by | null),slug?: (order_by | null),source?: (order_by | null),teaser?: (order_by | null),title?: (order_by | null),updated_at?: (order_by | null),url?: (order_by | null)} + + +/** primary key columns input for table: news_articles */ +export interface news_articles_pk_columns_input {id: Scalars['uuid']} + + +/** input type for updating data in table "news_articles" */ +export interface news_articles_set_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate stddev on columns */ +export interface news_articles_stddev_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_pop on columns */ +export interface news_articles_stddev_pop_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate stddev_samp on columns */ +export interface news_articles_stddev_samp_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** Streaming cursor of the table "news_articles" */ +export interface news_articles_stream_cursor_input { +/** Stream column input with initial value */ +initial_value: news_articles_stream_cursor_value_input, +/** cursor ordering */ +ordering?: (cursor_ordering | null)} + + +/** Initial value of the column from where the streaming should start */ +export interface news_articles_stream_cursor_value_input {author?: (Scalars['String'] | null),content_html?: (Scalars['String'] | null),cover_image_url?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),id?: (Scalars['uuid'] | null),issue_number?: (Scalars['Int'] | null),published_at?: (Scalars['timestamptz'] | null),scraped_at?: (Scalars['timestamptz'] | null),slug?: (Scalars['String'] | null),source?: (Scalars['String'] | null),teaser?: (Scalars['String'] | null),title?: (Scalars['String'] | null),updated_at?: (Scalars['timestamptz'] | null),url?: (Scalars['String'] | null)} + + +/** aggregate sum on columns */ +export interface news_articles_sum_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + +export interface news_articles_updates { +/** increments the numeric columns with given value of the filtered values */ +_inc?: (news_articles_inc_input | null), +/** sets the columns of the filtered rows to the given values */ +_set?: (news_articles_set_input | null), +/** filter the rows which have to be updated */ +where: news_articles_bool_exp} + + +/** aggregate var_pop on columns */ +export interface news_articles_var_pop_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate var_samp on columns */ +export interface news_articles_var_samp_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + +/** aggregate variance on columns */ +export interface news_articles_variance_fieldsGenqlSelection{ + issue_number?: boolean | number + __typename?: boolean | number + __scalar?: boolean | number +} + + /** columns and relationships of "notifications" */ export interface notificationsGenqlSelection{ actions?: { __args: { @@ -50666,6 +54078,7 @@ export interface playersGenqlSelection{ /** filter the rows returned */ where?: (player_kills_by_weapon_bool_exp | null)} }) language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** An array relationship */ lobby_players?: (lobby_playersGenqlSelection & { __args?: { @@ -51298,7 +54711,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),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_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_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),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),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),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_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),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)} /** input type for incrementing numeric columns in table "players" */ @@ -51306,7 +54719,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),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_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),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),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),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),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)} /** aggregate max on columns */ @@ -51327,6 +54740,7 @@ export interface players_max_fieldsGenqlSelection{ faceit_url?: boolean | number game_ban_count?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** A computed field, executes function "get_total_player_losses" */ losses?: boolean | number @@ -51379,6 +54793,7 @@ export interface players_min_fieldsGenqlSelection{ faceit_url?: boolean | number game_ban_count?: boolean | number language?: boolean | number + last_read_news_at?: boolean | number last_sign_in_at?: boolean | number /** A computed field, executes function "get_total_player_losses" */ losses?: boolean | number @@ -51435,7 +54850,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),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_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_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),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),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),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_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),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)} /** primary key columns input for table: players */ @@ -51443,7 +54858,7 @@ export interface players_pk_columns_input {steam_id: Scalars['bigint']} /** input type for updating data in table "players" */ -export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | 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),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_set_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | 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),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate stddev on columns */ @@ -51551,7 +54966,7 @@ ordering?: (cursor_ordering | null)} /** Initial value of the column from where the streaming should start */ -export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | 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),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} +export interface players_stream_cursor_value_input {avatar_url?: (Scalars['String'] | null),country?: (Scalars['String'] | null),created_at?: (Scalars['timestamptz'] | null),custom_avatar_url?: (Scalars['String'] | null),days_since_last_ban?: (Scalars['Int'] | null),discord_id?: (Scalars['String'] | null),faceit_elo?: (Scalars['Int'] | null),faceit_nickname?: (Scalars['String'] | null),faceit_player_id?: (Scalars['String'] | null),faceit_skill_level?: (Scalars['Int'] | null),faceit_updated_at?: (Scalars['timestamptz'] | null),faceit_url?: (Scalars['String'] | null),game_ban_count?: (Scalars['Int'] | null),language?: (Scalars['String'] | null),last_read_news_at?: (Scalars['timestamptz'] | null),last_sign_in_at?: (Scalars['timestamptz'] | null),name?: (Scalars['String'] | null),name_registered?: (Scalars['Boolean'] | null),premier_rank?: (Scalars['Int'] | 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),show_match_ready_modal?: (Scalars['Boolean'] | null),steam_bans_checked_at?: (Scalars['timestamptz'] | null),steam_id?: (Scalars['bigint'] | null),vac_ban_count?: (Scalars['Int'] | null),vac_banned?: (Scalars['Boolean'] | null)} /** aggregate sum on columns */ @@ -52001,6 +55416,84 @@ export interface query_rootGenqlSelection{ where?: (db_backups_bool_exp | null)} }) /** fetch data from the table: "db_backups" using primary key columns */ db_backups_by_pk?: (db_backupsGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table: "draft_game_players" */ + draft_game_players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + 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_check_in_settings" */ e_check_in_settings?: (e_check_in_settingsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -52027,6 +55520,136 @@ export interface query_rootGenqlSelection{ where?: (e_check_in_settings_bool_exp | null)} }) /** fetch data from the table: "e_check_in_settings" using primary key columns */ e_check_in_settings_by_pk?: (e_check_in_settingsGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -53443,6 +57066,32 @@ export interface query_rootGenqlSelection{ order_by?: (my_friends_order_by[] | null), /** filter the rows returned */ where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_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?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_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?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -56410,6 +60059,108 @@ export interface subscription_rootGenqlSelection{ cursor: (db_backups_stream_cursor_input | null)[], /** filter the rows returned */ where?: (db_backups_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" */ + draft_game_picks?: (draft_game_picksGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_picks" */ + draft_game_picks_aggregate?: (draft_game_picks_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_picks_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?: (draft_game_picks_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_picks" using primary key columns */ + draft_game_picks_by_pk?: (draft_game_picksGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "draft_game_picks" */ + draft_game_picks_stream?: (draft_game_picksGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_picks_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_picks_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" */ + draft_game_players?: (draft_game_playersGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch aggregated fields from the table: "draft_game_players" */ + draft_game_players_aggregate?: (draft_game_players_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_game_players_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (draft_game_players_order_by[] | null), + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** fetch data from the table: "draft_game_players" using primary key columns */ + draft_game_players_by_pk?: (draft_game_playersGenqlSelection & { __args: {draft_game_id: Scalars['uuid'], steam_id: Scalars['bigint']} }) + /** fetch data from the table in a streaming manner: "draft_game_players" */ + draft_game_players_stream?: (draft_game_playersGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_game_players_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_game_players_bool_exp | null)} }) + /** An array relationship */ + draft_games?: (draft_gamesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + where?: (draft_games_bool_exp | null)} }) + /** An aggregate relationship */ + draft_games_aggregate?: (draft_games_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (draft_games_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?: (draft_games_order_by[] | null), + /** filter the rows returned */ + 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 in a streaming manner: "draft_games" */ + draft_games_stream?: (draft_gamesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (draft_games_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (draft_games_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 */ @@ -56444,6 +60195,176 @@ export interface subscription_rootGenqlSelection{ cursor: (e_check_in_settings_stream_cursor_input | null)[], /** filter the rows returned */ where?: (e_check_in_settings_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection?: (e_draft_game_captain_selectionGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_aggregate?: (e_draft_game_captain_selection_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_captain_selection_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_draft_game_captain_selection_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_captain_selection" using primary key columns */ + e_draft_game_captain_selection_by_pk?: (e_draft_game_captain_selectionGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_captain_selection" */ + e_draft_game_captain_selection_stream?: (e_draft_game_captain_selectionGenqlSelection & { __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_draft_game_captain_selection_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_captain_selection_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order?: (e_draft_game_draft_orderGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_draft_order" */ + e_draft_game_draft_order_aggregate?: (e_draft_game_draft_order_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_draft_order_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_draft_game_draft_order_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_draft_order" using primary key columns */ + e_draft_game_draft_order_by_pk?: (e_draft_game_draft_orderGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_draft_order" */ + e_draft_game_draft_order_stream?: (e_draft_game_draft_orderGenqlSelection & { __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_draft_game_draft_order_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_draft_order_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" */ + e_draft_game_mode?: (e_draft_game_modeGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_mode" */ + e_draft_game_mode_aggregate?: (e_draft_game_mode_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_mode_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_draft_game_mode_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_mode" using primary key columns */ + e_draft_game_mode_by_pk?: (e_draft_game_modeGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_mode" */ + e_draft_game_mode_stream?: (e_draft_game_modeGenqlSelection & { __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_draft_game_mode_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_mode_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" */ + e_draft_game_player_status?: (e_draft_game_player_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_player_status" */ + e_draft_game_player_status_aggregate?: (e_draft_game_player_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_player_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_player_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_player_status" using primary key columns */ + e_draft_game_player_status_by_pk?: (e_draft_game_player_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_player_status" */ + e_draft_game_player_status_stream?: (e_draft_game_player_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_player_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_player_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" */ + e_draft_game_status?: (e_draft_game_statusGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch aggregated fields from the table: "e_draft_game_status" */ + e_draft_game_status_aggregate?: (e_draft_game_status_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (e_draft_game_status_select_column[] | null), + /** limit the number of rows returned */ + limit?: (Scalars['Int'] | null), + /** skip the first n rows. Use only with order_by */ + offset?: (Scalars['Int'] | null), + /** sort the rows by one or more columns */ + order_by?: (e_draft_game_status_order_by[] | null), + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) + /** fetch data from the table: "e_draft_game_status" using primary key columns */ + e_draft_game_status_by_pk?: (e_draft_game_statusGenqlSelection & { __args: {value: Scalars['String']} }) + /** fetch data from the table in a streaming manner: "e_draft_game_status" */ + e_draft_game_status_stream?: (e_draft_game_statusGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (e_draft_game_status_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (e_draft_game_status_bool_exp | null)} }) /** fetch data from the table: "e_friend_status" */ e_friend_status?: (e_friend_statusGenqlSelection & { __args?: { /** distinct select on columns */ @@ -58230,6 +62151,40 @@ export interface subscription_rootGenqlSelection{ cursor: (my_friends_stream_cursor_input | null)[], /** filter the rows returned */ where?: (my_friends_bool_exp | null)} }) + /** fetch data from the table: "news_articles" */ + news_articles?: (news_articlesGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_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?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch aggregated fields from the table: "news_articles" */ + news_articles_aggregate?: (news_articles_aggregateGenqlSelection & { __args?: { + /** distinct select on columns */ + distinct_on?: (news_articles_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?: (news_articles_order_by[] | null), + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) + /** fetch data from the table: "news_articles" using primary key columns */ + news_articles_by_pk?: (news_articlesGenqlSelection & { __args: {id: Scalars['uuid']} }) + /** fetch data from the table in a streaming manner: "news_articles" */ + news_articles_stream?: (news_articlesGenqlSelection & { __args: { + /** maximum number of rows returned in a single batch */ + batch_size: Scalars['Int'], + /** cursor to stream the results returned by the query */ + cursor: (news_articles_stream_cursor_input | null)[], + /** filter the rows returned */ + where?: (news_articles_bool_exp | null)} }) /** An array relationship */ notifications?: (notificationsGenqlSelection & { __args?: { /** distinct select on columns */ @@ -70675,6 +74630,14 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const CreateDraftGameOutput_possibleTypes: string[] = ['CreateDraftGameOutput'] + export const isCreateDraftGameOutput = (obj?: { __typename?: any } | null): obj is CreateDraftGameOutput => { + if (!obj?.__typename) throw new Error('__typename is missing in "isCreateDraftGameOutput"') + return CreateDraftGameOutput_possibleTypes.includes(obj.__typename) + } + + + const DatabaseStats_possibleTypes: string[] = ['DatabaseStats'] export const isDatabaseStats = (obj?: { __typename?: any } | null): obj is DatabaseStats => { if (!obj?.__typename) throw new Error('__typename is missing in "isDatabaseStats"') @@ -71611,6 +75574,342 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const draft_game_picks_possibleTypes: string[] = ['draft_game_picks'] + export const isdraft_game_picks = (obj?: { __typename?: any } | null): obj is draft_game_picks => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks"') + return draft_game_picks_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_possibleTypes: string[] = ['draft_game_picks_aggregate'] + export const isdraft_game_picks_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate"') + return draft_game_picks_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_aggregate_fields_possibleTypes: string[] = ['draft_game_picks_aggregate_fields'] + export const isdraft_game_picks_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_aggregate_fields"') + return draft_game_picks_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_avg_fields_possibleTypes: string[] = ['draft_game_picks_avg_fields'] + export const isdraft_game_picks_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_avg_fields"') + return draft_game_picks_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_max_fields_possibleTypes: string[] = ['draft_game_picks_max_fields'] + export const isdraft_game_picks_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_max_fields"') + return draft_game_picks_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_min_fields_possibleTypes: string[] = ['draft_game_picks_min_fields'] + export const isdraft_game_picks_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_min_fields"') + return draft_game_picks_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_mutation_response_possibleTypes: string[] = ['draft_game_picks_mutation_response'] + export const isdraft_game_picks_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_picks_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_mutation_response"') + return draft_game_picks_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_fields_possibleTypes: string[] = ['draft_game_picks_stddev_fields'] + export const isdraft_game_picks_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_fields"') + return draft_game_picks_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_pop_fields_possibleTypes: string[] = ['draft_game_picks_stddev_pop_fields'] + export const isdraft_game_picks_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_pop_fields"') + return draft_game_picks_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_stddev_samp_fields_possibleTypes: string[] = ['draft_game_picks_stddev_samp_fields'] + export const isdraft_game_picks_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_stddev_samp_fields"') + return draft_game_picks_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_sum_fields_possibleTypes: string[] = ['draft_game_picks_sum_fields'] + export const isdraft_game_picks_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_sum_fields"') + return draft_game_picks_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_pop_fields_possibleTypes: string[] = ['draft_game_picks_var_pop_fields'] + export const isdraft_game_picks_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_pop_fields"') + return draft_game_picks_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_var_samp_fields_possibleTypes: string[] = ['draft_game_picks_var_samp_fields'] + export const isdraft_game_picks_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_var_samp_fields"') + return draft_game_picks_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_picks_variance_fields_possibleTypes: string[] = ['draft_game_picks_variance_fields'] + export const isdraft_game_picks_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_picks_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_picks_variance_fields"') + return draft_game_picks_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_possibleTypes: string[] = ['draft_game_players'] + export const isdraft_game_players = (obj?: { __typename?: any } | null): obj is draft_game_players => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players"') + return draft_game_players_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_possibleTypes: string[] = ['draft_game_players_aggregate'] + export const isdraft_game_players_aggregate = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate"') + return draft_game_players_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_aggregate_fields_possibleTypes: string[] = ['draft_game_players_aggregate_fields'] + export const isdraft_game_players_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_aggregate_fields"') + return draft_game_players_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_avg_fields_possibleTypes: string[] = ['draft_game_players_avg_fields'] + export const isdraft_game_players_avg_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_avg_fields"') + return draft_game_players_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_max_fields_possibleTypes: string[] = ['draft_game_players_max_fields'] + export const isdraft_game_players_max_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_max_fields"') + return draft_game_players_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_min_fields_possibleTypes: string[] = ['draft_game_players_min_fields'] + export const isdraft_game_players_min_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_min_fields"') + return draft_game_players_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_mutation_response_possibleTypes: string[] = ['draft_game_players_mutation_response'] + export const isdraft_game_players_mutation_response = (obj?: { __typename?: any } | null): obj is draft_game_players_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_mutation_response"') + return draft_game_players_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_fields_possibleTypes: string[] = ['draft_game_players_stddev_fields'] + export const isdraft_game_players_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_fields"') + return draft_game_players_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_pop_fields_possibleTypes: string[] = ['draft_game_players_stddev_pop_fields'] + export const isdraft_game_players_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_pop_fields"') + return draft_game_players_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_stddev_samp_fields_possibleTypes: string[] = ['draft_game_players_stddev_samp_fields'] + export const isdraft_game_players_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_stddev_samp_fields"') + return draft_game_players_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_sum_fields_possibleTypes: string[] = ['draft_game_players_sum_fields'] + export const isdraft_game_players_sum_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_sum_fields"') + return draft_game_players_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_pop_fields_possibleTypes: string[] = ['draft_game_players_var_pop_fields'] + export const isdraft_game_players_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_pop_fields"') + return draft_game_players_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_var_samp_fields_possibleTypes: string[] = ['draft_game_players_var_samp_fields'] + export const isdraft_game_players_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_var_samp_fields"') + return draft_game_players_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_game_players_variance_fields_possibleTypes: string[] = ['draft_game_players_variance_fields'] + export const isdraft_game_players_variance_fields = (obj?: { __typename?: any } | null): obj is draft_game_players_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_game_players_variance_fields"') + return draft_game_players_variance_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_possibleTypes: string[] = ['draft_games'] + export const isdraft_games = (obj?: { __typename?: any } | null): obj is draft_games => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games"') + return draft_games_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_possibleTypes: string[] = ['draft_games_aggregate'] + export const isdraft_games_aggregate = (obj?: { __typename?: any } | null): obj is draft_games_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate"') + return draft_games_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_aggregate_fields_possibleTypes: string[] = ['draft_games_aggregate_fields'] + export const isdraft_games_aggregate_fields = (obj?: { __typename?: any } | null): obj is draft_games_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_aggregate_fields"') + return draft_games_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_avg_fields_possibleTypes: string[] = ['draft_games_avg_fields'] + export const isdraft_games_avg_fields = (obj?: { __typename?: any } | null): obj is draft_games_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_avg_fields"') + return draft_games_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_max_fields_possibleTypes: string[] = ['draft_games_max_fields'] + export const isdraft_games_max_fields = (obj?: { __typename?: any } | null): obj is draft_games_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_max_fields"') + return draft_games_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_min_fields_possibleTypes: string[] = ['draft_games_min_fields'] + export const isdraft_games_min_fields = (obj?: { __typename?: any } | null): obj is draft_games_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_min_fields"') + return draft_games_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_mutation_response_possibleTypes: string[] = ['draft_games_mutation_response'] + export const isdraft_games_mutation_response = (obj?: { __typename?: any } | null): obj is draft_games_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_mutation_response"') + return draft_games_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_fields_possibleTypes: string[] = ['draft_games_stddev_fields'] + export const isdraft_games_stddev_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_fields"') + return draft_games_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_pop_fields_possibleTypes: string[] = ['draft_games_stddev_pop_fields'] + export const isdraft_games_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_pop_fields"') + return draft_games_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_stddev_samp_fields_possibleTypes: string[] = ['draft_games_stddev_samp_fields'] + export const isdraft_games_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_stddev_samp_fields"') + return draft_games_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_sum_fields_possibleTypes: string[] = ['draft_games_sum_fields'] + export const isdraft_games_sum_fields = (obj?: { __typename?: any } | null): obj is draft_games_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_sum_fields"') + return draft_games_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_pop_fields_possibleTypes: string[] = ['draft_games_var_pop_fields'] + export const isdraft_games_var_pop_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_pop_fields"') + return draft_games_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_var_samp_fields_possibleTypes: string[] = ['draft_games_var_samp_fields'] + export const isdraft_games_var_samp_fields = (obj?: { __typename?: any } | null): obj is draft_games_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_var_samp_fields"') + return draft_games_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const draft_games_variance_fields_possibleTypes: string[] = ['draft_games_variance_fields'] + export const isdraft_games_variance_fields = (obj?: { __typename?: any } | null): obj is draft_games_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isdraft_games_variance_fields"') + return draft_games_variance_fields_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"') @@ -71659,6 +75958,246 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const e_draft_game_captain_selection_possibleTypes: string[] = ['e_draft_game_captain_selection'] + export const ise_draft_game_captain_selection = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection"') + return e_draft_game_captain_selection_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate'] + export const ise_draft_game_captain_selection_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate"') + return e_draft_game_captain_selection_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_aggregate_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_aggregate_fields'] + export const ise_draft_game_captain_selection_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_aggregate_fields"') + return e_draft_game_captain_selection_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_max_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_max_fields'] + export const ise_draft_game_captain_selection_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_max_fields"') + return e_draft_game_captain_selection_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_min_fields_possibleTypes: string[] = ['e_draft_game_captain_selection_min_fields'] + export const ise_draft_game_captain_selection_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_min_fields"') + return e_draft_game_captain_selection_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_captain_selection_mutation_response_possibleTypes: string[] = ['e_draft_game_captain_selection_mutation_response'] + export const ise_draft_game_captain_selection_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_captain_selection_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_captain_selection_mutation_response"') + return e_draft_game_captain_selection_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_possibleTypes: string[] = ['e_draft_game_draft_order'] + export const ise_draft_game_draft_order = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order"') + return e_draft_game_draft_order_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate'] + export const ise_draft_game_draft_order_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate"') + return e_draft_game_draft_order_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_aggregate_fields_possibleTypes: string[] = ['e_draft_game_draft_order_aggregate_fields'] + export const ise_draft_game_draft_order_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_aggregate_fields"') + return e_draft_game_draft_order_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_max_fields_possibleTypes: string[] = ['e_draft_game_draft_order_max_fields'] + export const ise_draft_game_draft_order_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_max_fields"') + return e_draft_game_draft_order_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_min_fields_possibleTypes: string[] = ['e_draft_game_draft_order_min_fields'] + export const ise_draft_game_draft_order_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_min_fields"') + return e_draft_game_draft_order_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_draft_order_mutation_response_possibleTypes: string[] = ['e_draft_game_draft_order_mutation_response'] + export const ise_draft_game_draft_order_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_draft_order_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_draft_order_mutation_response"') + return e_draft_game_draft_order_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_possibleTypes: string[] = ['e_draft_game_mode'] + export const ise_draft_game_mode = (obj?: { __typename?: any } | null): obj is e_draft_game_mode => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode"') + return e_draft_game_mode_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_possibleTypes: string[] = ['e_draft_game_mode_aggregate'] + export const ise_draft_game_mode_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate"') + return e_draft_game_mode_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_aggregate_fields_possibleTypes: string[] = ['e_draft_game_mode_aggregate_fields'] + export const ise_draft_game_mode_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_aggregate_fields"') + return e_draft_game_mode_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_max_fields_possibleTypes: string[] = ['e_draft_game_mode_max_fields'] + export const ise_draft_game_mode_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_max_fields"') + return e_draft_game_mode_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_min_fields_possibleTypes: string[] = ['e_draft_game_mode_min_fields'] + export const ise_draft_game_mode_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_min_fields"') + return e_draft_game_mode_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_mode_mutation_response_possibleTypes: string[] = ['e_draft_game_mode_mutation_response'] + export const ise_draft_game_mode_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_mode_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_mode_mutation_response"') + return e_draft_game_mode_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_possibleTypes: string[] = ['e_draft_game_player_status'] + export const ise_draft_game_player_status = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status"') + return e_draft_game_player_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_possibleTypes: string[] = ['e_draft_game_player_status_aggregate'] + export const ise_draft_game_player_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate"') + return e_draft_game_player_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_player_status_aggregate_fields'] + export const ise_draft_game_player_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_aggregate_fields"') + return e_draft_game_player_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_max_fields_possibleTypes: string[] = ['e_draft_game_player_status_max_fields'] + export const ise_draft_game_player_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_max_fields"') + return e_draft_game_player_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_min_fields_possibleTypes: string[] = ['e_draft_game_player_status_min_fields'] + export const ise_draft_game_player_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_min_fields"') + return e_draft_game_player_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_player_status_mutation_response_possibleTypes: string[] = ['e_draft_game_player_status_mutation_response'] + export const ise_draft_game_player_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_player_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_player_status_mutation_response"') + return e_draft_game_player_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_possibleTypes: string[] = ['e_draft_game_status'] + export const ise_draft_game_status = (obj?: { __typename?: any } | null): obj is e_draft_game_status => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status"') + return e_draft_game_status_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_possibleTypes: string[] = ['e_draft_game_status_aggregate'] + export const ise_draft_game_status_aggregate = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate"') + return e_draft_game_status_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_aggregate_fields_possibleTypes: string[] = ['e_draft_game_status_aggregate_fields'] + export const ise_draft_game_status_aggregate_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_aggregate_fields"') + return e_draft_game_status_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_max_fields_possibleTypes: string[] = ['e_draft_game_status_max_fields'] + export const ise_draft_game_status_max_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_max_fields"') + return e_draft_game_status_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_min_fields_possibleTypes: string[] = ['e_draft_game_status_min_fields'] + export const ise_draft_game_status_min_fields = (obj?: { __typename?: any } | null): obj is e_draft_game_status_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_min_fields"') + return e_draft_game_status_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const e_draft_game_status_mutation_response_possibleTypes: string[] = ['e_draft_game_status_mutation_response'] + export const ise_draft_game_status_mutation_response = (obj?: { __typename?: any } | null): obj is e_draft_game_status_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "ise_draft_game_status_mutation_response"') + return e_draft_game_status_mutation_response_possibleTypes.includes(obj.__typename) + } + + + const e_friend_status_possibleTypes: string[] = ['e_friend_status'] export const ise_friend_status = (obj?: { __typename?: any } | null): obj is e_friend_status => { if (!obj?.__typename) throw new Error('__typename is missing in "ise_friend_status"') @@ -75267,6 +79806,118 @@ export type SubscriptionGenqlSelection = subscription_rootGenqlSelection + const news_articles_possibleTypes: string[] = ['news_articles'] + export const isnews_articles = (obj?: { __typename?: any } | null): obj is news_articles => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles"') + return news_articles_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_possibleTypes: string[] = ['news_articles_aggregate'] + export const isnews_articles_aggregate = (obj?: { __typename?: any } | null): obj is news_articles_aggregate => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate"') + return news_articles_aggregate_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_aggregate_fields_possibleTypes: string[] = ['news_articles_aggregate_fields'] + export const isnews_articles_aggregate_fields = (obj?: { __typename?: any } | null): obj is news_articles_aggregate_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_aggregate_fields"') + return news_articles_aggregate_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_avg_fields_possibleTypes: string[] = ['news_articles_avg_fields'] + export const isnews_articles_avg_fields = (obj?: { __typename?: any } | null): obj is news_articles_avg_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_avg_fields"') + return news_articles_avg_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_max_fields_possibleTypes: string[] = ['news_articles_max_fields'] + export const isnews_articles_max_fields = (obj?: { __typename?: any } | null): obj is news_articles_max_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_max_fields"') + return news_articles_max_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_min_fields_possibleTypes: string[] = ['news_articles_min_fields'] + export const isnews_articles_min_fields = (obj?: { __typename?: any } | null): obj is news_articles_min_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_min_fields"') + return news_articles_min_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_mutation_response_possibleTypes: string[] = ['news_articles_mutation_response'] + export const isnews_articles_mutation_response = (obj?: { __typename?: any } | null): obj is news_articles_mutation_response => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_mutation_response"') + return news_articles_mutation_response_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_fields_possibleTypes: string[] = ['news_articles_stddev_fields'] + export const isnews_articles_stddev_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_fields"') + return news_articles_stddev_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_pop_fields_possibleTypes: string[] = ['news_articles_stddev_pop_fields'] + export const isnews_articles_stddev_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_pop_fields"') + return news_articles_stddev_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_stddev_samp_fields_possibleTypes: string[] = ['news_articles_stddev_samp_fields'] + export const isnews_articles_stddev_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_stddev_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_stddev_samp_fields"') + return news_articles_stddev_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_sum_fields_possibleTypes: string[] = ['news_articles_sum_fields'] + export const isnews_articles_sum_fields = (obj?: { __typename?: any } | null): obj is news_articles_sum_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_sum_fields"') + return news_articles_sum_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_pop_fields_possibleTypes: string[] = ['news_articles_var_pop_fields'] + export const isnews_articles_var_pop_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_pop_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_pop_fields"') + return news_articles_var_pop_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_var_samp_fields_possibleTypes: string[] = ['news_articles_var_samp_fields'] + export const isnews_articles_var_samp_fields = (obj?: { __typename?: any } | null): obj is news_articles_var_samp_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_var_samp_fields"') + return news_articles_var_samp_fields_possibleTypes.includes(obj.__typename) + } + + + + const news_articles_variance_fields_possibleTypes: string[] = ['news_articles_variance_fields'] + export const isnews_articles_variance_fields = (obj?: { __typename?: any } | null): obj is news_articles_variance_fields => { + if (!obj?.__typename) throw new Error('__typename is missing in "isnews_articles_variance_fields"') + return news_articles_variance_fields_possibleTypes.includes(obj.__typename) + } + + + const notifications_possibleTypes: string[] = ['notifications'] export const isnotifications = (obj?: { __typename?: any } | null): obj is notifications => { if (!obj?.__typename) throw new Error('__typename is missing in "isnotifications"') @@ -82999,6 +87650,142 @@ export const enumDbBackupsUpdateColumn = { size: 'size' as const } +export const enumDraftGamePicksConstraint = { + draft_game_picks_pkey: 'draft_game_picks_pkey' as const +} + +export const enumDraftGamePicksSelectColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolAndArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksSelectColumnDraftGamePicksAggregateBoolExpBoolOrArgumentsColumns = { + auto_picked: 'auto_picked' as const +} + +export const enumDraftGamePicksUpdateColumn = { + auto_picked: 'auto_picked' as const, + captain_steam_id: 'captain_steam_id' as const, + created_at: 'created_at' as const, + draft_game_id: 'draft_game_id' as const, + id: 'id' as const, + lineup: 'lineup' as const, + picked_steam_id: 'picked_steam_id' as const +} + +export const enumDraftGamePlayersConstraint = { + draft_game_players_pkey: 'draft_game_players_pkey' as const +} + +export const enumDraftGamePlayersSelectColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolAndArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersSelectColumnDraftGamePlayersAggregateBoolExpBoolOrArgumentsColumns = { + is_captain: 'is_captain' as const +} + +export const enumDraftGamePlayersUpdateColumn = { + draft_game_id: 'draft_game_id' as const, + elo_snapshot: 'elo_snapshot' as const, + is_captain: 'is_captain' as const, + joined_at: 'joined_at' as const, + lineup: 'lineup' as const, + pick_order: 'pick_order' as const, + status: 'status' as const, + steam_id: 'steam_id' as const +} + +export const enumDraftGamesConstraint = { + draft_games_pkey: 'draft_games_pkey' as const +} + +export const enumDraftGamesSelectColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolAndArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesSelectColumnDraftGamesAggregateBoolExpBoolOrArgumentsColumns = { + inner_squad: 'inner_squad' as const, + require_approval: 'require_approval' as const +} + +export const enumDraftGamesUpdateColumn = { + access: 'access' as const, + capacity: 'capacity' as const, + captain_selection: 'captain_selection' as const, + created_at: 'created_at' as const, + current_pick_lineup: 'current_pick_lineup' as const, + draft_order: 'draft_order' as const, + expires_at: 'expires_at' as const, + host_steam_id: 'host_steam_id' as const, + id: 'id' as const, + inner_squad: 'inner_squad' as const, + invite_code: 'invite_code' as const, + map_pool_id: 'map_pool_id' as const, + match_id: 'match_id' as const, + match_options_id: 'match_options_id' as const, + max_elo: 'max_elo' as const, + min_elo: 'min_elo' as const, + mode: 'mode' as const, + pick_deadline: 'pick_deadline' as const, + regions: 'regions' as const, + require_approval: 'require_approval' as const, + status: 'status' as const, + team_1_id: 'team_1_id' as const, + team_2_id: 'team_2_id' as const, + type: 'type' as const, + updated_at: 'updated_at' as const +} + export const enumECheckInSettingsConstraint = { e_check_in_settings_pkey: 'e_check_in_settings_pkey' as const } @@ -83019,6 +87806,110 @@ export const enumECheckInSettingsUpdateColumn = { value: 'value' as const } +export const enumEDraftGameCaptainSelectionConstraint = { + e_draft_game_captain_selection_pkey: 'e_draft_game_captain_selection_pkey' as const +} + +export const enumEDraftGameCaptainSelectionEnum = { + HostAndNext: 'HostAndNext' as const, + RandomTwo: 'RandomTwo' as const, + TopEloTwo: 'TopEloTwo' as const +} + +export const enumEDraftGameCaptainSelectionSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameCaptainSelectionUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderConstraint = { + e_draft_game_draft_order_pkey: 'e_draft_game_draft_order_pkey' as const +} + +export const enumEDraftGameDraftOrderEnum = { + Alternating: 'Alternating' as const, + Snake: 'Snake' as const +} + +export const enumEDraftGameDraftOrderSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameDraftOrderUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeConstraint = { + e_draft_game_mode_pkey: 'e_draft_game_mode_pkey' as const +} + +export const enumEDraftGameModeEnum = { + Captains: 'Captains' as const, + Host: 'Host' as const, + Pug: 'Pug' as const, + Teams: 'Teams' as const +} + +export const enumEDraftGameModeSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameModeUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusConstraint = { + e_draft_game_player_status_pkey: 'e_draft_game_player_status_pkey' as const +} + +export const enumEDraftGamePlayerStatusEnum = { + Accepted: 'Accepted' as const, + Requested: 'Requested' as const, + Waitlist: 'Waitlist' as const +} + +export const enumEDraftGamePlayerStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGamePlayerStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusConstraint = { + e_draft_game_status_pkey: 'e_draft_game_status_pkey' as const +} + +export const enumEDraftGameStatusEnum = { + Canceled: 'Canceled' as const, + Completed: 'Completed' as const, + CreatingMatch: 'CreatingMatch' as const, + Drafting: 'Drafting' as const, + Filled: 'Filled' as const, + Open: 'Open' as const, + SelectingCaptains: 'SelectingCaptains' as const +} + +export const enumEDraftGameStatusSelectColumn = { + description: 'description' as const, + value: 'value' as const +} + +export const enumEDraftGameStatusUpdateColumn = { + description: 'description' as const, + value: 'value' as const +} + export const enumEFriendStatusConstraint = { e_friend_status_pkey: 'e_friend_status_pkey' as const } @@ -84448,6 +89339,45 @@ export const enumMyFriendsSelectColumnMyFriendsAggregateBoolExpBoolOrArgumentsCo name_registered: 'name_registered' as const } +export const enumNewsArticlesConstraint = { + news_articles_pkey: 'news_articles_pkey' as const, + news_articles_url_key: 'news_articles_url_key' as const +} + +export const enumNewsArticlesSelectColumn = { + author: 'author' as const, + content_html: 'content_html' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + issue_number: 'issue_number' as const, + published_at: 'published_at' as const, + scraped_at: 'scraped_at' as const, + slug: 'slug' as const, + source: 'source' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + url: 'url' as const +} + +export const enumNewsArticlesUpdateColumn = { + author: 'author' as const, + content_html: 'content_html' as const, + cover_image_url: 'cover_image_url' as const, + created_at: 'created_at' as const, + id: 'id' as const, + issue_number: 'issue_number' as const, + published_at: 'published_at' as const, + scraped_at: 'scraped_at' as const, + slug: 'slug' as const, + source: 'source' as const, + teaser: 'teaser' as const, + title: 'title' as const, + updated_at: 'updated_at' as const, + url: 'url' as const +} + export const enumNotificationsConstraint = { notifications_pkey: 'notifications_pkey' as const } @@ -85426,6 +90356,7 @@ export const enumPlayersSelectColumn = { faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, @@ -85456,6 +90387,7 @@ export const enumPlayersUpdateColumn = { faceit_url: 'faceit_url' as const, game_ban_count: 'game_ban_count' as const, language: 'language' as const, + last_read_news_at: 'last_read_news_at' as const, last_sign_in_at: 'last_sign_in_at' as const, name: 'name' as const, name_registered: 'name_registered' as const, diff --git a/generated/types.ts b/generated/types.ts index a20813c9..e80eec7a 100644 --- a/generated/types.ts +++ b/generated/types.ts @@ -1,506 +1,544 @@ export default { "scalars": [ 3, - 25, - 34, - 63, - 80, - 88, - 92, - 104, - 115, - 127, - 140, - 149, - 157, - 162, - 164, - 179, - 194, + 26, + 35, + 64, + 81, + 89, + 93, + 105, + 116, + 128, + 141, + 150, + 158, + 163, + 165, + 180, 195, 196, - 208, - 216, - 222, - 231, - 239, - 248, - 249, - 258, - 262, + 197, + 209, + 217, + 223, + 232, + 240, + 257, 268, 269, - 279, - 283, - 289, - 290, - 299, - 303, - 309, - 310, - 320, - 324, - 330, - 331, - 341, - 345, - 351, - 352, + 270, + 282, + 302, + 313, + 314, + 315, + 327, + 347, + 359, + 360, 361, - 365, - 371, - 372, - 382, + 373, + 385, 386, - 392, - 393, - 402, + 395, + 399, + 405, 406, - 412, - 413, - 423, + 416, + 420, + 426, 427, - 433, - 434, - 443, + 437, + 441, 447, - 453, - 454, - 464, + 448, + 458, + 462, 468, - 474, - 475, - 485, + 469, + 479, + 483, 489, - 495, - 496, - 505, - 509, - 515, - 516, + 490, + 500, + 504, + 510, + 511, + 521, 525, - 529, - 535, - 536, + 531, + 532, + 541, 545, - 549, - 555, - 556, - 565, - 569, - 575, - 576, - 586, - 590, - 596, - 597, - 606, - 610, - 616, - 617, - 626, - 630, - 636, - 637, - 647, - 651, - 657, - 658, - 667, - 671, - 677, - 678, - 687, - 691, - 697, - 698, - 708, - 712, - 718, - 719, - 729, - 733, - 739, - 740, - 749, - 753, - 759, - 760, - 769, - 773, - 779, - 780, - 789, - 793, - 795, - 802, + 551, + 552, + 562, + 566, + 572, + 573, + 583, + 587, + 593, + 594, + 603, + 607, + 613, + 614, + 624, + 628, + 634, + 635, + 644, + 648, + 654, + 655, + 665, + 669, + 675, + 676, + 685, + 689, + 695, + 696, + 706, + 710, + 716, + 717, + 727, + 731, + 737, + 738, + 747, + 751, + 757, + 758, + 767, + 771, + 777, + 778, + 787, + 791, + 797, + 798, + 807, 811, - 819, - 837, - 853, - 854, - 855, - 867, - 881, - 895, - 903, - 914, - 927, - 935, - 942, - 944, - 946, + 817, + 818, + 828, + 832, + 838, + 839, + 848, + 852, + 858, + 859, + 868, + 872, + 878, + 879, + 889, + 893, + 899, + 900, + 909, + 913, + 919, + 920, + 929, + 933, + 939, + 940, + 950, + 954, 960, - 976, - 985, - 989, - 1003, - 1014, + 961, + 971, + 975, + 981, + 982, + 991, + 995, + 1001, + 1002, + 1011, 1015, - 1016, - 1028, - 1040, - 1049, + 1021, + 1022, + 1031, + 1035, + 1037, + 1044, 1053, - 1065, - 1076, - 1077, - 1078, - 1082, - 1094, - 1106, - 1118, + 1061, + 1079, + 1095, + 1096, + 1097, + 1109, + 1123, 1137, - 1152, - 1164, - 1182, - 1193, - 1205, - 1225, - 1236, - 1237, - 1238, - 1250, - 1268, - 1280, - 1292, - 1313, - 1329, - 1330, - 1331, - 1343, - 1361, - 1372, - 1384, - 1400, - 1410, - 1414, - 1426, - 1438, - 1450, - 1463, - 1473, - 1481, - 1494, - 1504, - 1508, - 1523, - 1538, - 1539, - 1540, - 1552, - 1564, + 1145, + 1156, + 1169, + 1177, + 1184, + 1186, + 1188, + 1202, + 1218, + 1227, + 1231, + 1245, + 1256, + 1257, + 1258, + 1270, + 1282, + 1291, + 1295, + 1307, + 1318, + 1319, + 1320, + 1324, + 1336, + 1348, + 1360, + 1379, + 1394, + 1406, + 1424, + 1435, + 1447, + 1467, + 1478, + 1479, + 1480, + 1492, + 1510, + 1522, + 1534, + 1555, + 1571, 1572, - 1576, - 1588, - 1600, - 1612, - 1624, - 1632, - 1636, - 1663, - 1664, - 1665, - 1697, - 1712, - 1713, - 1714, - 1726, - 1734, + 1573, + 1585, + 1603, + 1614, + 1626, + 1642, + 1652, + 1656, + 1668, + 1680, + 1692, + 1705, + 1715, + 1723, 1736, - 1747, - 1758, - 1770, - 1783, - 1793, - 1801, - 1811, - 1820, - 1828, - 1843, + 1746, + 1750, + 1765, + 1780, + 1781, + 1782, + 1794, + 1806, + 1814, + 1818, + 1830, + 1842, 1854, 1866, - 1886, - 1897, - 1898, - 1899, - 1911, - 1927, - 1947, - 1958, - 1970, + 1874, + 1878, + 1905, + 1906, + 1907, + 1931, + 1940, + 1948, + 1966, + 1981, + 1982, 1983, - 1992, - 2000, - 2015, - 2026, - 2038, - 2058, - 2069, + 1995, + 2003, + 2005, + 2016, + 2027, + 2039, + 2052, + 2062, 2070, - 2071, - 2083, - 2113, - 2124, - 2136, - 2144, + 2080, + 2089, + 2097, + 2112, + 2123, + 2135, 2155, - 2156, - 2157, - 2169, - 2188, - 2210, - 2221, - 2233, - 2249, - 2275, - 2302, - 2313, - 2325, - 2341, - 2361, - 2372, - 2384, - 2402, + 2166, + 2167, + 2168, + 2180, + 2196, + 2216, + 2227, + 2239, + 2252, + 2261, + 2269, + 2284, + 2295, + 2307, + 2327, + 2338, + 2339, + 2340, + 2352, + 2382, + 2393, + 2405, 2413, + 2424, 2425, + 2426, 2438, - 2448, - 2456, - 2466, - 2475, - 2483, - 2498, - 2509, - 2521, - 2539, - 2550, - 2562, - 2586, - 2608, - 2618, - 2626, - 2636, - 2645, + 2457, + 2479, + 2490, + 2502, + 2518, + 2544, + 2571, + 2582, + 2594, + 2610, + 2630, + 2641, 2653, - 2664, - 2673, - 2681, - 2698, - 2710, - 2711, - 2712, - 2724, - 2736, + 2671, + 2682, + 2694, + 2707, + 2717, + 2725, + 2735, 2744, - 2748, - 2758, - 2768, - 2772, + 2752, + 2767, 2778, - 2787, - 2791, - 2803, - 2814, - 2826, - 2846, - 2857, - 2858, - 2859, - 2871, - 2889, - 2901, - 2913, - 2921, + 2790, + 2808, + 2819, + 2831, + 2855, + 2877, + 2887, + 2895, + 2905, + 2914, 2922, - 2936, - 2948, - 2949, + 2933, + 2942, 2950, - 2962, + 2967, + 2979, 2980, - 2991, - 3003, - 3024, - 3040, + 2981, + 2993, + 3005, + 3013, + 3017, + 3027, + 3037, 3041, - 3042, - 3054, + 3047, + 3056, + 3060, 3072, 3083, 3095, - 3113, - 3124, - 3136, - 3154, - 3166, - 3178, - 3198, - 3209, - 3210, - 3211, - 3223, - 3241, - 3253, - 3265, - 3285, - 3297, - 3298, - 3299, + 3115, + 3126, + 3127, + 3128, + 3140, + 3158, + 3170, + 3182, + 3190, + 3191, + 3205, + 3217, + 3218, + 3219, + 3231, + 3249, + 3260, + 3272, + 3293, + 3309, + 3310, 3311, - 3319, - 3329, - 3351, - 3379, - 3404, - 3422, - 3440, - 3461, - 3481, - 3507, - 3532, - 3550, - 3586, - 3587, + 3323, + 3341, + 3352, + 3364, + 3382, + 3393, + 3405, + 3423, + 3435, + 3447, + 3467, + 3478, + 3479, + 3480, + 3492, + 3510, + 3522, + 3534, + 3554, + 3566, + 3567, + 3568, + 3580, 3588, - 3589, - 3590, - 3591, - 3592, - 3593, - 3594, - 3619, - 3637, - 3655, - 3683, - 3710, - 3728, - 3746, - 3772, - 3797, - 3815, - 3842, - 3843, - 3844, + 3598, + 3620, + 3648, + 3673, + 3691, + 3709, + 3730, + 3750, + 3776, + 3801, + 3819, + 3855, + 3856, 3857, - 3887, - 3899, - 3900, - 3901, - 3902, - 3903, - 3904, - 3905, + 3858, + 3859, + 3860, + 3861, + 3862, + 3863, + 3888, 3906, - 3907, - 3919, - 3953, - 3954, - 3955, - 3956, - 3957, - 3958, - 3959, - 3960, - 3961, - 4004, - 4005, - 4006, - 4007, - 4008, - 4009, - 4010, - 4011, - 4012 + 3924, + 3952, + 3979, + 3997, + 4015, + 4041, + 4066, + 4084, + 4111, + 4112, + 4113, + 4126, + 4156, + 4168, + 4169, + 4170, + 4171, + 4172, + 4173, + 4174, + 4175, + 4176, + 4188, + 4222, + 4223, + 4224, + 4225, + 4226, + 4227, + 4228, + 4229, + 4230, + 4273, + 4274, + 4275, + 4276, + 4277, + 4278, + 4279, + 4280, + 4281 ], "types": { "ActiveConnection": { "application_name": [ - 63 + 64 ], "client_addr": [ - 63 + 64 ], "pid": [ - 34 + 35 ], "query": [ - 63 + 64 ], "query_start": [ - 2921 + 3190 ], "state": [ - 63 + 64 ], "usename": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ActiveQuery": { "application_name": [ - 63 + 64 ], "client_addr": [ - 63 + 64 ], "duration_seconds": [ - 25 + 26 ], "pid": [ - 34 + 35 ], "query": [ - 63 + 64 ], "query_start": [ - 2921 + 3190 ], "state": [ - 63 + 64 ], "usename": [ - 63 + 64 ], "wait_event": [ - 63 + 64 ], "wait_event_type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ApiKeyResponse": { "key": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "Boolean": {}, @@ -533,7 +571,7 @@ export default { 3 ], "__typename": [ - 63 + 64 ] }, "ClipAudioInput": { @@ -541,64 +579,64 @@ export default { 3 ], "fade_in_ms": [ - 34 + 35 ], "fade_out_ms": [ - 34 + 35 ], "track_url": [ - 63 + 64 ], "volume": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "ClipOutputInput": { "format": [ - 63 + 64 ], "fps": [ - 34 + 35 ], "resolution": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ClipOverlayInput": { "end_ms": [ - 34 + 35 ], "payload": [ - 946 + 1188 ], "start_ms": [ - 34 + 35 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ClipSegmentInput": { "end_tick": [ - 34 + 35 ], "pov_steam_id": [ - 63 + 64 ], "start_tick": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "ClipSpecInput": { @@ -606,10 +644,10 @@ export default { 5 ], "destination": [ - 63 + 64 ], "match_map_id": [ - 3319 + 3588 ], "output": [ 6 @@ -621,270 +659,278 @@ export default { 8 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ConnectionByState": { "count": [ - 34 + 35 ], "state": [ - 63 + 64 ], "wait_event_type": [ - 63 + 64 ], "waiting_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "ConnectionStats": { "active": [ - 34 + 35 ], "by_state": [ 10 ], "idle": [ - 34 + 35 ], "idle_in_transaction": [ - 34 + 35 ], "total": [ - 34 + 35 ], "waiting": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "CpuStat": { "time": [ - 2921 + 3190 ], "total": [ - 162 + 163 ], "used": [ - 162 + 163 ], "window": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "CreateClipRenderOutput": { "job_id": [ - 3319 + 3588 ], "success": [ 3 ], "__typename": [ - 63 + 64 + ] + }, + "CreateDraftGameOutput": { + "draftGameId": [ + 3588 + ], + "__typename": [ + 64 ] }, "DatabaseStats": { "blks_hit": [ - 34 + 35 ], "blks_read": [ - 34 + 35 ], "cache_hit_ratio": [ - 25 + 26 ], "conflicts": [ - 34 + 35 ], "datname": [ - 63 + 64 ], "deadlocks": [ - 34 + 35 ], "numbackends": [ - 34 + 35 ], "tup_deleted": [ - 34 + 35 ], "tup_fetched": [ - 34 + 35 ], "tup_inserted": [ - 34 + 35 ], "tup_returned": [ - 34 + 35 ], "tup_updated": [ - 34 + 35 ], "xact_commit": [ - 34 + 35 ], "xact_rollback": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "DbStats": { "calls": [ - 34 + 35 ], "local_blks_hit": [ - 34 + 35 ], "local_blks_read": [ - 34 + 35 ], "max_exec_time": [ - 25 + 26 ], "mean_exec_time": [ - 25 + 26 ], "min_exec_time": [ - 25 + 26 ], "query": [ - 63 + 64 ], "queryid": [ - 63 + 64 ], "shared_blks_hit": [ - 34 + 35 ], "shared_blks_read": [ - 34 + 35 ], "total_exec_time": [ - 25 + 26 ], "total_rows": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "DedicatedSeverInfo": { "id": [ - 63 + 64 ], "lastPing": [ - 63 + 64 ], "map": [ - 63 + 64 ], "players": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "DeleteOrphansOutput": { "bytes_freed": [ - 25 + 26 ], "deleted": [ - 34 + 35 ], "remaining_orphans": [ - 34 + 35 ], "success": [ 3 ], "__typename": [ - 63 + 64 ] }, "DiskStat": { "available": [ - 63 + 64 ], "filesystem": [ - 63 + 64 ], "mountpoint": [ - 63 + 64 ], "size": [ - 63 + 64 ], "used": [ - 63 + 64 ], "usedPercent": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "DiskStats": { "disks": [ - 18 + 19 ], "time": [ - 2921 + 3190 ], "__typename": [ - 63 + 64 ] }, "FaceitTestOutput": { "dataApi": [ - 21 + 22 ], "downloadApi": [ - 21 + 22 ], "__typename": [ - 63 + 64 ] }, "FaceitTestResult": { "detail": [ - 63 + 64 ], "ok": [ 3 ], "__typename": [ - 63 + 64 ] }, "FileContentResponse": { "content": [ - 63 + 64 ], "path": [ - 63 + 64 ], "size": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "FileItem": { @@ -892,114 +938,114 @@ export default { 3 ], "modified": [ - 2921 + 3190 ], "name": [ - 63 + 64 ], "path": [ - 63 + 64 ], "size": [ - 162 + 163 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "FileListResponse": { "currentPath": [ - 63 + 64 ], "items": [ - 23 + 24 ], "__typename": [ - 63 + 64 ] }, "Float": {}, "Float_comparison_exp": { "_eq": [ - 25 + 26 ], "_gt": [ - 25 + 26 ], "_gte": [ - 25 + 26 ], "_in": [ - 25 + 26 ], "_is_null": [ 3 ], "_lt": [ - 25 + 26 ], "_lte": [ - 25 + 26 ], "_neq": [ - 25 + 26 ], "_nin": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "GetTestUploadResponse": { "error": [ - 63 + 64 ], "link": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "GpuDeviceStat": { "index": [ - 34 + 35 ], "memory_mb": [ - 34 + 35 ], "memory_used_mb": [ - 34 + 35 ], "name": [ - 63 + 64 ], "power_w": [ - 34 + 35 ], "temperature_c": [ - 34 + 35 ], "utilization_percent": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "GpuStats": { "devices": [ - 28 + 29 ], "time": [ - 2921 + 3190 ], "__typename": [ - 63 + 64 ] }, "HighlightPresetAvailability": { @@ -1019,7 +1065,7 @@ export default { 3 ], "__typename": [ - 63 + 64 ] }, "HypertableInfo": { @@ -1027,95 +1073,95 @@ export default { 3 ], "hypertable_name": [ - 63 + 64 ], "num_chunks": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "IndexIOStat": { "idx_blks_hit": [ - 34 + 35 ], "idx_blks_read": [ - 34 + 35 ], "indexname": [ - 63 + 64 ], "schemaname": [ - 63 + 64 ], "tablename": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "IndexStat": { "idx_scan": [ - 34 + 35 ], "idx_tup_fetch": [ - 34 + 35 ], "idx_tup_read": [ - 34 + 35 ], "index_size": [ - 34 + 35 ], "indexname": [ - 63 + 64 ], "schemaname": [ - 63 + 64 ], "table_size": [ - 34 + 35 ], "tablename": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "Int": {}, "Int_comparison_exp": { "_eq": [ - 34 + 35 ], "_gt": [ - 34 + 35 ], "_gte": [ - 34 + 35 ], "_in": [ - 34 + 35 ], "_is_null": [ 3 ], "_lt": [ - 34 + 35 ], "_lte": [ - 34 + 35 ], "_neq": [ - 34 + 35 ], "_nin": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "KickResult": { @@ -1123,45 +1169,45 @@ export default { 3 ], "message": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "LiveSpecGsi": { "map_name": [ - 63 + 64 ], "map_phase": [ - 63 + 64 ], "round_number": [ - 34 + 35 ], "round_phase": [ - 63 + 64 ], "spec_slots": [ - 38 + 39 ], "spectated_steam_id": [ - 63 + 64 ], "team_ct_name": [ - 63 + 64 ], "team_ct_score": [ - 34 + 35 ], "team_t_name": [ - 63 + 64 ], "team_t_score": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "LiveSpecSlot": { @@ -1169,30 +1215,30 @@ export default { 3 ], "health": [ - 34 + 35 ], "name": [ - 63 + 64 ], "slot": [ - 34 + 35 ], "steam_id": [ - 63 + 64 ], "team": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "LiveStreamSpecState": { "gsi": [ - 37 + 38 ], "__typename": [ - 63 + 64 ] }, "LockInfo": { @@ -1200,96 +1246,96 @@ export default { 3 ], "locktype": [ - 63 + 64 ], "mode": [ - 63 + 64 ], "pid": [ - 34 + 35 ], "query": [ - 63 + 64 ], "relation": [ - 63 + 64 ], "usename": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "MeResponse": { "avatar_url": [ - 63 + 64 ], "country": [ - 63 + 64 ], "discord_id": [ - 63 + 64 ], "language": [ - 63 + 64 ], "name": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "profile_url": [ - 63 + 64 ], "role": [ - 63 + 64 ], "steam_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "MemoryStat": { "time": [ - 2921 + 3190 ], "total": [ - 162 + 163 ], "used": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "NetworkStats": { "nics": [ - 44 + 45 ], "time": [ - 2921 + 3190 ], "__typename": [ - 63 + 64 ] }, "NicStat": { "name": [ - 63 + 64 ], "rx": [ - 162 + 163 ], "tx": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "NodeStats": { @@ -1297,100 +1343,100 @@ export default { 12 ], "disks": [ - 19 + 20 ], "gpu": [ - 29 + 30 ], "memory": [ - 42 + 43 ], "network": [ - 43 + 44 ], "node": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "OrphanObject": { "key": [ - 63 + 64 ], "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "OrphanScanResultOutput": { "bucket": [ - 63 + 64 ], "clip_bytes": [ - 25 + 26 ], "clip_objects": [ - 34 + 35 ], "demo_bytes": [ - 25 + 26 ], "demo_objects": [ - 34 + 35 ], "found": [ 3 ], "orphan_bytes": [ - 25 + 26 ], "orphan_objects": [ - 34 + 35 ], "orphans": [ - 46 + 47 ], "other_bytes": [ - 25 + 26 ], "other_objects": [ - 34 + 35 ], "scanned_at": [ - 63 + 64 ], "scanning": [ 3 ], "total_bytes": [ - 25 + 26 ], "total_objects": [ - 34 + 35 ], "tracked_bytes": [ - 25 + 26 ], "tracked_objects": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "PendingMatchImportActionOutput": { "error": [ - 63 + 64 ], "success": [ 3 ], "__typename": [ - 63 + 64 ] }, "PodStats": { @@ -1398,91 +1444,91 @@ export default { 12 ], "memory": [ - 42 + 43 ], "name": [ - 63 + 64 ], "node": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "PreviewTournamentMatchResetOutput": { "impacts": [ - 74 + 75 ], "__typename": [ - 63 + 64 ] }, "QueryDetail": { "explain_plan": [ - 63 + 64 ], "query": [ - 63 + 64 ], "queryid": [ - 63 + 64 ], "stats": [ - 52 + 53 ], "__typename": [ - 63 + 64 ] }, "QueryStat": { "cache_hit_ratio": [ - 25 + 26 ], "calls": [ - 34 + 35 ], "local_blks_hit": [ - 34 + 35 ], "local_blks_read": [ - 34 + 35 ], "max_exec_time": [ - 25 + 26 ], "mean_exec_time": [ - 25 + 26 ], "min_exec_time": [ - 25 + 26 ], "query": [ - 63 + 64 ], "queryid": [ - 63 + 64 ], "shared_blks_hit": [ - 34 + 35 ], "shared_blks_read": [ - 34 + 35 ], "stddev_exec_time": [ - 25 + 26 ], "temp_blks_written": [ - 34 + 35 ], "total_exec_time": [ - 25 + 26 ], "total_rows": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "ReparseAllStartedOutput": { @@ -1493,7 +1539,7 @@ export default { 3 ], "__typename": [ - 63 + 64 ] }, "ReparseAllStatusOutput": { @@ -1501,28 +1547,28 @@ export default { 3 ], "completed": [ - 34 + 35 ], "current_demo_id": [ - 63 + 64 ], "failed": [ - 34 + 35 ], "finished_at": [ - 63 + 64 ], "running": [ 3 ], "started_at": [ - 63 + 64 ], "total": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "SanctionResult": { @@ -1530,13 +1576,13 @@ export default { 3 ], "id": [ - 63 + 64 ], "message": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "ScanStartedOutput": { @@ -1547,183 +1593,183 @@ export default { 3 ], "__typename": [ - 63 + 64 ] }, "ServerPlayer": { "name": [ - 63 + 64 ], "steam_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "SetupGameServeOutput": { "gameServerId": [ - 63 + 64 ], "link": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "SteamMatchHistoryLinkOutput": { "error": [ - 63 + 64 ], "success": [ 3 ], "__typename": [ - 63 + 64 ] }, "SteamMatchHistoryPollOutput": { "collected": [ - 34 + 35 ], "error": [ - 63 + 64 ], "success": [ 3 ], "__typename": [ - 63 + 64 ] }, "StorageStats": { "summary": [ - 62 + 63 ], "tables": [ - 68 + 69 ], "__typename": [ - 63 + 64 ] }, "StorageSummary": { "estimated_reclaimable_space": [ - 25 + 26 ], "total_database_size": [ - 25 + 26 ], "total_indexes_size": [ - 25 + 26 ], "total_table_size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "String": {}, "String_array_comparison_exp": { "_contained_in": [ - 63 + 64 ], "_contains": [ - 63 + 64 ], "_eq": [ - 63 + 64 ], "_gt": [ - 63 + 64 ], "_gte": [ - 63 + 64 ], "_in": [ - 63 + 64 ], "_is_null": [ 3 ], "_lt": [ - 63 + 64 ], "_lte": [ - 63 + 64 ], "_neq": [ - 63 + 64 ], "_nin": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "String_comparison_exp": { "_eq": [ - 63 + 64 ], "_gt": [ - 63 + 64 ], "_gte": [ - 63 + 64 ], "_ilike": [ - 63 + 64 ], "_in": [ - 63 + 64 ], "_iregex": [ - 63 + 64 ], "_is_null": [ 3 ], "_like": [ - 63 + 64 ], "_lt": [ - 63 + 64 ], "_lte": [ - 63 + 64 ], "_neq": [ - 63 + 64 ], "_nilike": [ - 63 + 64 ], "_nin": [ - 63 + 64 ], "_niregex": [ - 63 + 64 ], "_nlike": [ - 63 + 64 ], "_nregex": [ - 63 + 64 ], "_nsimilar": [ - 63 + 64 ], "_regex": [ - 63 + 64 ], "_similar": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "SuccessOutput": { @@ -1731,247 +1777,247 @@ export default { 3 ], "__typename": [ - 63 + 64 ] }, "TableIOStat": { "cache_hit_ratio": [ - 25 + 26 ], "heap_blks_hit": [ - 34 + 35 ], "heap_blks_read": [ - 34 + 35 ], "idx_blks_hit": [ - 34 + 35 ], "idx_blks_read": [ - 34 + 35 ], "relname": [ - 63 + 64 ], "schemaname": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "TableSizeInfo": { "estimated_dead_tuple_bytes": [ - 25 + 26 ], "indexes_size": [ - 25 + 26 ], "n_dead_tup": [ - 34 + 35 ], "n_live_tup": [ - 34 + 35 ], "schemaname": [ - 63 + 64 ], "table_size": [ - 25 + 26 ], "tablename": [ - 63 + 64 ], "total_size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "TableStat": { "idx_scan": [ - 34 + 35 ], "idx_tup_fetch": [ - 34 + 35 ], "last_analyze": [ - 2921 + 3190 ], "last_autoanalyze": [ - 2921 + 3190 ], "last_autovacuum": [ - 2921 + 3190 ], "last_vacuum": [ - 2921 + 3190 ], "n_dead_tup": [ - 34 + 35 ], "n_live_tup": [ - 34 + 35 ], "n_tup_del": [ - 34 + 35 ], "n_tup_hot_upd": [ - 34 + 35 ], "n_tup_ins": [ - 34 + 35 ], "n_tup_upd": [ - 34 + 35 ], "relname": [ - 63 + 64 ], "schemaname": [ - 63 + 64 ], "seq_scan": [ - 34 + 35 ], "seq_tup_read": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "TelemetryStats": { "online": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "TestUploadResponse": { "error": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "TimescaleJob": { "hypertable_name": [ - 63 + 64 ], "job_id": [ - 34 + 35 ], "job_type": [ - 63 + 64 ], "last_run_status": [ - 63 + 64 ], "next_start": [ - 2921 + 3190 ], "__typename": [ - 63 + 64 ] }, "TimescaleStats": { "chunks_count": [ - 34 + 35 ], "hypertables": [ - 31 + 32 ], "jobs": [ - 72 + 73 ], "__typename": [ - 63 + 64 ] }, "TournamentMatchResetImpact": { "bracket_id": [ - 3319 + 3588 ], "depth": [ - 34 + 35 ], "is_source": [ 3 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_status": [ - 63 + 64 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "stage_type": [ - 63 + 64 ], "will_delete_match": [ 3 ], "__typename": [ - 63 + 64 ] }, "WatchDemoOutput": { "match_map_id": [ - 63 + 64 ], "session_id": [ - 63 + 64 ], "stream_url": [ - 63 + 64 ], "success": [ 3 ], "__typename": [ - 63 + 64 ] }, "_map_pool": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_aggregate": { "aggregate": [ - 78 + 79 ], "nodes": [ - 76 + 77 ], "__typename": [ - 63 + 64 ] }, "_map_pool_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 88, + 89, "[_map_pool_select_column!]" ], "distinct": [ @@ -1980,221 +2026,221 @@ export default { } ], "max": [ - 82 + 83 ], "min": [ - 83 + 84 ], "__typename": [ - 63 + 64 ] }, "_map_pool_bool_exp": { "_and": [ - 79 + 80 ], "_not": [ - 79 + 80 ], "_or": [ - 79 + 80 ], "map_id": [ - 3320 + 3589 ], "map_pool_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "_map_pool_constraint": {}, "_map_pool_insert_input": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_max_fields": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_min_fields": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 76 + 77 ], "__typename": [ - 63 + 64 ] }, "_map_pool_on_conflict": { "constraint": [ - 80 + 81 ], "update_columns": [ - 92 + 93 ], "where": [ - 79 + 80 ], "__typename": [ - 63 + 64 ] }, "_map_pool_order_by": { "map_id": [ - 1736 + 2005 ], "map_pool_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "_map_pool_pk_columns_input": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_select_column": {}, "_map_pool_set_input": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_stream_cursor_input": { "initial_value": [ - 91 + 92 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "_map_pool_stream_cursor_value_input": { "map_id": [ - 3319 + 3588 ], "map_pool_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "_map_pool_update_column": {}, "_map_pool_updates": { "_set": [ - 89 + 90 ], "where": [ - 79 + 80 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_aggregate": { "aggregate": [ - 98 + 99 ], "nodes": [ - 94 + 95 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_aggregate_bool_exp": { "count": [ - 97 + 98 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_aggregate_bool_exp_count": { "arguments": [ - 115 + 116 ], "distinct": [ 3 ], "filter": [ - 103 + 104 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_aggregate_fields": { "avg": [ - 101 + 102 ], "count": [ - 34, + 35, { "columns": [ - 115, + 116, "[abandoned_matches_select_column!]" ], "distinct": [ @@ -2202,44 +2248,6 @@ export default { ] } ], - "max": [ - 107 - ], - "min": [ - 109 - ], - "stddev": [ - 117 - ], - "stddev_pop": [ - 119 - ], - "stddev_samp": [ - 121 - ], - "sum": [ - 125 - ], - "var_pop": [ - 129 - ], - "var_samp": [ - 131 - ], - "variance": [ - 133 - ], - "__typename": [ - 63 - ] - }, - "abandoned_matches_aggregate_order_by": { - "avg": [ - 102 - ], - "count": [ - 1736 - ], "max": [ 108 ], @@ -2268,392 +2276,430 @@ export default { 134 ], "__typename": [ - 63 + 64 + ] + }, + "abandoned_matches_aggregate_order_by": { + "avg": [ + 103 + ], + "count": [ + 2005 + ], + "max": [ + 109 + ], + "min": [ + 111 + ], + "stddev": [ + 119 + ], + "stddev_pop": [ + 121 + ], + "stddev_samp": [ + 123 + ], + "sum": [ + 127 + ], + "var_pop": [ + 131 + ], + "var_samp": [ + 133 + ], + "variance": [ + 135 + ], + "__typename": [ + 64 ] }, "abandoned_matches_arr_rel_insert_input": { "data": [ - 106 + 107 ], "on_conflict": [ - 112 + 113 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_avg_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_bool_exp": { "_and": [ - 103 + 104 ], "_not": [ - 103 + 104 ], "_or": [ - 103 + 104 ], "abandoned_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_constraint": {}, "abandoned_matches_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_insert_input": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_max_fields": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_max_order_by": { "abandoned_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_min_fields": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_min_order_by": { "abandoned_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 94 + 95 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_on_conflict": { "constraint": [ - 104 + 105 ], "update_columns": [ - 127 + 128 ], "where": [ - 103 + 104 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_order_by": { "abandoned_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_select_column": {}, "abandoned_matches_set_input": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stddev_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stream_cursor_input": { "initial_value": [ - 124 + 125 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_stream_cursor_value_input": { "abandoned_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_sum_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_update_column": {}, "abandoned_matches_updates": { "_inc": [ - 105 + 106 ], "_set": [ - 116 + 117 ], "where": [ - 103 + 104 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_var_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_var_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "abandoned_matches_variance_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "api_keys": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_aggregate": { "aggregate": [ - 137 + 138 ], "nodes": [ - 135 + 136 ], "__typename": [ - 63 + 64 ] }, "api_keys_aggregate_fields": { "avg": [ - 138 + 139 ], "count": [ - 34, + 35, { "columns": [ - 149, + 150, "[api_keys_select_column!]" ], "distinct": [ @@ -2662,550 +2708,550 @@ export default { } ], "max": [ - 143 + 144 ], "min": [ - 144 + 145 ], "stddev": [ - 151 + 152 ], "stddev_pop": [ - 152 + 153 ], "stddev_samp": [ - 153 + 154 ], "sum": [ - 156 + 157 ], "var_pop": [ - 159 + 160 ], "var_samp": [ - 160 + 161 ], "variance": [ - 161 + 162 ], "__typename": [ - 63 + 64 ] }, "api_keys_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_bool_exp": { "_and": [ - 139 + 140 ], "_not": [ - 139 + 140 ], "_or": [ - 139 + 140 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "label": [ - 65 + 66 ], "last_used_at": [ - 2923 + 3192 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "api_keys_constraint": {}, "api_keys_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 135 + 136 ], "__typename": [ - 63 + 64 ] }, "api_keys_on_conflict": { "constraint": [ - 140 + 141 ], "update_columns": [ - 157 + 158 ], "where": [ - 139 + 140 ], "__typename": [ - 63 + 64 ] }, "api_keys_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "last_used_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "api_keys_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "api_keys_select_column": {}, "api_keys_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_stream_cursor_input": { "initial_value": [ - 155 + 156 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "api_keys_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "last_used_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "api_keys_update_column": {}, "api_keys_updates": { "_inc": [ - 141 + 142 ], "_set": [ - 150 + 151 ], "where": [ - 139 + 140 ], "__typename": [ - 63 + 64 ] }, "api_keys_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "api_keys_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "bigint": {}, "bigint_comparison_exp": { "_eq": [ - 162 + 163 ], "_gt": [ - 162 + 163 ], "_gte": [ - 162 + 163 ], "_in": [ - 162 + 163 ], "_is_null": [ 3 ], "_lt": [ - 162 + 163 ], "_lte": [ - 162 + 163 ], "_neq": [ - 162 + 163 ], "_nin": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "bytea": {}, "bytea_comparison_exp": { "_eq": [ - 164 + 165 ], "_gt": [ - 164 + 165 ], "_gte": [ - 164 + 165 ], "_in": [ - 164 + 165 ], "_is_null": [ 3 ], "_lt": [ - 164 + 165 ], "_lte": [ - 164 + 165 ], "_neq": [ - 164 + 165 ], "_nin": [ - 164 + 165 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs": { "clip": [ - 1084 + 1326 ], "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 824 + 1066 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map": [ - 1416 + 1658 ], "match_map_demo": [ - 1300 + 1542 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "paused": [ 3 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "spec": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "status": [ - 63 + 64 ], "status_history": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "user": [ - 2603 + 2872 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate": { "aggregate": [ - 172 + 173 ], "nodes": [ - 166 + 167 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_bool_exp": { "bool_and": [ - 169 + 170 ], "bool_or": [ - 170 + 171 ], "count": [ - 171 + 172 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_bool_exp_bool_and": { "arguments": [ - 195 + 196 ], "distinct": [ 3 ], "filter": [ - 178 + 179 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_bool_exp_bool_or": { "arguments": [ - 196 + 197 ], "distinct": [ 3 ], "filter": [ - 178 + 179 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_bool_exp_count": { "arguments": [ - 194 + 195 ], "distinct": [ 3 ], "filter": [ - 178 + 179 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_fields": { "avg": [ - 176 + 177 ], "count": [ - 34, + 35, { "columns": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "distinct": [ @@ -3214,624 +3260,624 @@ export default { } ], "max": [ - 185 + 186 ], "min": [ - 187 + 188 ], "stddev": [ - 198 + 199 ], "stddev_pop": [ - 200 + 201 ], "stddev_samp": [ - 202 + 203 ], "sum": [ - 206 + 207 ], "var_pop": [ - 210 + 211 ], "var_samp": [ - 212 + 213 ], "variance": [ - 214 + 215 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_aggregate_order_by": { "avg": [ - 177 + 178 ], "count": [ - 1736 + 2005 ], "max": [ - 186 + 187 ], "min": [ - 188 + 189 ], "stddev": [ - 199 + 200 ], "stddev_pop": [ - 201 + 202 ], "stddev_samp": [ - 203 + 204 ], "sum": [ - 207 + 208 ], "var_pop": [ - 211 + 212 ], "var_samp": [ - 213 + 214 ], "variance": [ - 215 + 216 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_append_input": { "spec": [ - 946 + 1188 ], "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_arr_rel_insert_input": { "data": [ - 184 + 185 ], "on_conflict": [ - 190 + 191 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_avg_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_avg_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_bool_exp": { "_and": [ - 178 + 179 ], "_not": [ - 178 + 179 ], "_or": [ - 178 + 179 ], "clip": [ - 1093 + 1335 ], "clip_id": [ - 3320 + 3589 ], "created_at": [ - 2923 + 3192 ], "error_message": [ - 65 + 66 ], "game_server_node": [ - 836 + 1078 ], "game_server_node_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "k8s_job_name": [ - 65 + 66 ], "last_status_at": [ - 2923 + 3192 ], "match_map": [ - 1425 + 1667 ], "match_map_demo": [ - 1312 + 1554 ], "match_map_demo_id": [ - 3320 + 3589 ], "match_map_id": [ - 3320 + 3589 ], "paused": [ 4 ], "progress": [ - 1735 + 2004 ], "session_token": [ - 65 + 66 ], "sort_index": [ - 35 + 36 ], "spec": [ - 948 + 1190 ], "status": [ - 65 + 66 ], "status_history": [ - 948 + 1190 ], "user": [ - 2607 + 2876 ], "user_steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_constraint": {}, "clip_render_jobs_delete_at_path_input": { "spec": [ - 63 + 64 ], "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_delete_elem_input": { "spec": [ - 34 + 35 ], "status_history": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_delete_key_input": { "spec": [ - 63 + 64 ], "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_inc_input": { "progress": [ - 1734 + 2003 ], "sort_index": [ - 34 + 35 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_insert_input": { "clip": [ - 1102 + 1344 ], "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 848 + 1090 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map": [ - 1434 + 1676 ], "match_map_demo": [ - 1324 + 1566 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "paused": [ 3 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "spec": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "user": [ - 2614 + 2883 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_max_fields": { "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "status": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_max_order_by": { "clip_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "progress": [ - 1736 + 2005 ], "session_token": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_min_fields": { "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "status": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_min_order_by": { "clip_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "progress": [ - 1736 + 2005 ], "session_token": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 166 + 167 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_on_conflict": { "constraint": [ - 179 + 180 ], "update_columns": [ - 208 + 209 ], "where": [ - 178 + 179 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_order_by": { "clip": [ - 1104 + 1346 ], "clip_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node": [ - 850 + 1092 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_demo": [ - 1326 + 1568 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "paused": [ - 1736 + 2005 ], "progress": [ - 1736 + 2005 ], "session_token": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "spec": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "status_history": [ - 1736 + 2005 ], "user": [ - 2616 + 2885 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_prepend_input": { "spec": [ - 946 + 1188 ], "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_select_column": {}, @@ -3839,391 +3885,391 @@ export default { "clip_render_jobs_select_column_clip_render_jobs_aggregate_bool_exp_bool_or_arguments_columns": {}, "clip_render_jobs_set_input": { "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "paused": [ 3 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "spec": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_pop_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_pop_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_samp_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stddev_samp_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stream_cursor_input": { "initial_value": [ - 205 + 206 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_stream_cursor_value_input": { "clip_id": [ - 3319 + 3588 ], "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "paused": [ 3 ], "progress": [ - 1734 + 2003 ], "session_token": [ - 63 + 64 ], "sort_index": [ - 34 + 35 ], "spec": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_sum_fields": { "progress": [ - 1734 + 2003 ], "sort_index": [ - 34 + 35 ], "user_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_sum_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_update_column": {}, "clip_render_jobs_updates": { "_append": [ - 174 + 175 ], "_delete_at_path": [ - 180 + 181 ], "_delete_elem": [ - 181 + 182 ], "_delete_key": [ - 182 + 183 ], "_inc": [ - 183 + 184 ], "_prepend": [ - 193 + 194 ], "_set": [ - 197 + 198 ], "where": [ - 178 + 179 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_var_pop_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_var_pop_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_var_samp_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_var_samp_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_variance_fields": { "progress": [ - 25 + 26 ], "sort_index": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "clip_render_jobs_variance_order_by": { "progress": [ - 1736 + 2005 ], "sort_index": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "cursor_ordering": {}, "db_backups": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_aggregate": { "aggregate": [ - 219 + 220 ], "nodes": [ - 217 + 218 ], "__typename": [ - 63 + 64 ] }, "db_backups_aggregate_fields": { "avg": [ - 220 + 221 ], "count": [ - 34, + 35, { "columns": [ - 231, + 232, "[db_backups_select_column!]" ], "distinct": [ @@ -4232,1188 +4278,1187 @@ export default { } ], "max": [ - 225 + 226 ], "min": [ - 226 + 227 ], "stddev": [ - 233 + 234 ], "stddev_pop": [ - 234 + 235 ], "stddev_samp": [ - 235 + 236 ], "sum": [ - 238 + 239 ], "var_pop": [ - 241 + 242 ], "var_samp": [ - 242 + 243 ], "variance": [ - 243 + 244 ], "__typename": [ - 63 + 64 ] }, "db_backups_avg_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_bool_exp": { "_and": [ - 221 + 222 ], "_not": [ - 221 + 222 ], "_or": [ - 221 + 222 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "name": [ - 65 + 66 ], "size": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "db_backups_constraint": {}, "db_backups_inc_input": { "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 217 + 218 ], "__typename": [ - 63 + 64 ] }, "db_backups_on_conflict": { "constraint": [ - 222 + 223 ], "update_columns": [ - 239 + 240 ], "where": [ - 221 + 222 ], "__typename": [ - 63 + 64 ] }, "db_backups_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "db_backups_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "db_backups_select_column": {}, "db_backups_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_stddev_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_stddev_pop_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_stddev_samp_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_stream_cursor_input": { "initial_value": [ - 237 + 238 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "db_backups_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_sum_fields": { "size": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "db_backups_update_column": {}, "db_backups_updates": { "_inc": [ - 223 + 224 ], "_set": [ - 232 + 233 ], "where": [ - 221 + 222 ], "__typename": [ - 63 + 64 ] }, "db_backups_var_pop_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_var_samp_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "db_backups_variance_fields": { "size": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings": { - "description": [ - 63 + "draft_game_picks": { + "auto_picked": [ + 3 ], - "value": [ - 63 + "captain": [ + 2872 + ], + "captain_steam_id": [ + 163 + ], + "created_at": [ + 3191 + ], + "draft_game": [ + 335 + ], + "draft_game_id": [ + 3588 + ], + "id": [ + 3588 + ], + "lineup": [ + 35 + ], + "picked": [ + 2872 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_aggregate": { + "draft_game_picks_aggregate": { "aggregate": [ - 246 + 251 ], "nodes": [ - 244 + 245 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 258, - "[e_check_in_settings_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_aggregate_bool_exp": { + "bool_and": [ + 248 ], - "max": [ - 252 + "bool_or": [ + 249 ], - "min": [ - 253 + "count": [ + 250 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_bool_exp": { - "_and": [ - 247 - ], - "_not": [ - 247 + "draft_game_picks_aggregate_bool_exp_bool_and": { + "arguments": [ + 269 ], - "_or": [ - 247 + "distinct": [ + 3 ], - "description": [ - 65 + "filter": [ + 256 ], - "value": [ - 65 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_constraint": {}, - "e_check_in_settings_enum": {}, - "e_check_in_settings_enum_comparison_exp": { - "_eq": [ - 249 - ], - "_in": [ - 249 + "draft_game_picks_aggregate_bool_exp_bool_or": { + "arguments": [ + 270 ], - "_is_null": [ + "distinct": [ 3 ], - "_neq": [ - 249 + "filter": [ + 256 ], - "_nin": [ - 249 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_insert_input": { - "description": [ - 63 + "draft_game_picks_aggregate_bool_exp_count": { + "arguments": [ + 268 ], - "value": [ - 63 + "distinct": [ + 3 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_max_fields": { - "description": [ - 63 + "filter": [ + 256 ], - "value": [ - 63 + "predicate": [ + 36 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_min_fields": { - "description": [ - 63 + "draft_game_picks_aggregate_fields": { + "avg": [ + 254 ], - "value": [ - 63 + "count": [ + 35, + { + "columns": [ + 268, + "[draft_game_picks_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_mutation_response": { - "affected_rows": [ - 34 + "max": [ + 260 ], - "returning": [ - 244 + "min": [ + 262 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_on_conflict": { - "constraint": [ - 248 + "stddev": [ + 272 ], - "update_columns": [ - 262 + "stddev_pop": [ + 274 ], - "where": [ - 247 + "stddev_samp": [ + 276 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_order_by": { - "description": [ - 1736 + "sum": [ + 280 ], - "value": [ - 1736 + "var_pop": [ + 284 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_pk_columns_input": { - "value": [ - 63 + "var_samp": [ + 286 + ], + "variance": [ + 288 ], "__typename": [ - 63 + 64 ] }, - "e_check_in_settings_select_column": {}, - "e_check_in_settings_set_input": { - "description": [ - 63 + "draft_game_picks_aggregate_order_by": { + "avg": [ + 255 ], - "value": [ - 63 + "count": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_stream_cursor_input": { - "initial_value": [ + "max": [ 261 ], - "ordering": [ - 216 + "min": [ + 263 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_stream_cursor_value_input": { - "description": [ - 63 + "stddev": [ + 273 ], - "value": [ - 63 + "stddev_pop": [ + 275 ], - "__typename": [ - 63 - ] - }, - "e_check_in_settings_update_column": {}, - "e_check_in_settings_updates": { - "_set": [ - 259 + "stddev_samp": [ + 277 ], - "where": [ - 247 + "sum": [ + 281 + ], + "var_pop": [ + 285 + ], + "var_samp": [ + 287 + ], + "variance": [ + 289 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status": { - "description": [ - 63 + "draft_game_picks_arr_rel_insert_input": { + "data": [ + 259 ], - "value": [ - 63 + "on_conflict": [ + 265 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_aggregate": { - "aggregate": [ - 266 + "draft_game_picks_avg_fields": { + "captain_steam_id": [ + 26 ], - "nodes": [ - 264 + "lineup": [ + 26 + ], + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 279, - "[e_friend_status_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_avg_order_by": { + "captain_steam_id": [ + 2005 ], - "max": [ - 272 + "lineup": [ + 2005 ], - "min": [ - 273 + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_bool_exp": { + "draft_game_picks_bool_exp": { "_and": [ - 267 + 256 ], "_not": [ - 267 + 256 ], "_or": [ - 267 + 256 ], - "description": [ - 65 + "auto_picked": [ + 4 ], - "value": [ - 65 + "captain": [ + 2876 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_constraint": {}, - "e_friend_status_enum": {}, - "e_friend_status_enum_comparison_exp": { - "_eq": [ - 269 + "captain_steam_id": [ + 164 ], - "_in": [ - 269 + "created_at": [ + 3192 ], - "_is_null": [ - 3 + "draft_game": [ + 346 ], - "_neq": [ - 269 + "draft_game_id": [ + 3589 ], - "_nin": [ - 269 + "id": [ + 3589 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_insert_input": { - "description": [ - 63 + "lineup": [ + 36 ], - "value": [ - 63 + "picked": [ + 2876 + ], + "picked_steam_id": [ + 164 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_max_fields": { - "description": [ - 63 + "draft_game_picks_constraint": {}, + "draft_game_picks_inc_input": { + "captain_steam_id": [ + 163 ], - "value": [ - 63 + "lineup": [ + 35 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_min_fields": { - "description": [ - 63 + "draft_game_picks_insert_input": { + "auto_picked": [ + 3 ], - "value": [ - 63 + "captain": [ + 2883 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_mutation_response": { - "affected_rows": [ - 34 + "captain_steam_id": [ + 163 ], - "returning": [ - 264 + "created_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_obj_rel_insert_input": { - "data": [ - 271 + "draft_game": [ + 355 ], - "on_conflict": [ - 276 + "draft_game_id": [ + 3588 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_on_conflict": { - "constraint": [ - 268 + "id": [ + 3588 ], - "update_columns": [ - 283 + "lineup": [ + 35 ], - "where": [ - 267 + "picked": [ + 2883 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_order_by": { - "description": [ - 1736 - ], - "value": [ - 1736 + "draft_game_picks_max_fields": { + "captain_steam_id": [ + 163 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_pk_columns_input": { - "value": [ - 63 + "created_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_select_column": {}, - "e_friend_status_set_input": { - "description": [ - 63 + "draft_game_id": [ + 3588 ], - "value": [ - 63 + "id": [ + 3588 ], - "__typename": [ - 63 - ] - }, - "e_friend_status_stream_cursor_input": { - "initial_value": [ - 282 + "lineup": [ + 35 ], - "ordering": [ - 216 + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_stream_cursor_value_input": { - "description": [ - 63 + "draft_game_picks_max_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "created_at": [ + 2005 + ], + "draft_game_id": [ + 2005 + ], + "id": [ + 2005 + ], + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_friend_status_update_column": {}, - "e_friend_status_updates": { - "_set": [ - 280 + "draft_game_picks_min_fields": { + "captain_steam_id": [ + 163 ], - "where": [ - 267 + "created_at": [ + 3191 + ], + "draft_game_id": [ + 3588 + ], + "id": [ + 3588 + ], + "lineup": [ + 35 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types": { - "description": [ - 63 + "draft_game_picks_min_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "created_at": [ + 2005 + ], + "draft_game_id": [ + 2005 + ], + "id": [ + 2005 + ], + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_aggregate": { - "aggregate": [ - 287 + "draft_game_picks_mutation_response": { + "affected_rows": [ + 35 ], - "nodes": [ - 285 + "returning": [ + 245 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 299, - "[e_game_cfg_types_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_on_conflict": { + "constraint": [ + 257 ], - "max": [ - 293 + "update_columns": [ + 282 ], - "min": [ - 294 + "where": [ + 256 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_bool_exp": { - "_and": [ - 288 + "draft_game_picks_order_by": { + "auto_picked": [ + 2005 ], - "_not": [ - 288 + "captain": [ + 2885 ], - "_or": [ - 288 + "captain_steam_id": [ + 2005 ], - "description": [ - 65 + "created_at": [ + 2005 ], - "value": [ - 65 + "draft_game": [ + 357 ], - "__typename": [ - 63 - ] - }, - "e_game_cfg_types_constraint": {}, - "e_game_cfg_types_enum": {}, - "e_game_cfg_types_enum_comparison_exp": { - "_eq": [ - 290 + "draft_game_id": [ + 2005 ], - "_in": [ - 290 + "id": [ + 2005 ], - "_is_null": [ - 3 + "lineup": [ + 2005 ], - "_neq": [ - 290 + "picked": [ + 2885 ], - "_nin": [ - 290 + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_insert_input": { - "description": [ - 63 - ], - "value": [ - 63 + "draft_game_picks_pk_columns_input": { + "id": [ + 3588 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_max_fields": { - "description": [ - 63 + "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 ], - "value": [ - 63 + "captain_steam_id": [ + 163 + ], + "created_at": [ + 3191 + ], + "draft_game_id": [ + 3588 + ], + "id": [ + 3588 + ], + "lineup": [ + 35 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_min_fields": { - "description": [ - 63 + "draft_game_picks_stddev_fields": { + "captain_steam_id": [ + 26 ], - "value": [ - 63 + "lineup": [ + 26 + ], + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_mutation_response": { - "affected_rows": [ - 34 + "draft_game_picks_stddev_order_by": { + "captain_steam_id": [ + 2005 ], - "returning": [ - 285 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_on_conflict": { - "constraint": [ - 289 + "draft_game_picks_stddev_pop_fields": { + "captain_steam_id": [ + 26 ], - "update_columns": [ - 303 + "lineup": [ + 26 ], - "where": [ - 288 + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_order_by": { - "description": [ - 1736 + "draft_game_picks_stddev_pop_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 1736 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_pk_columns_input": { - "value": [ - 63 + "draft_game_picks_stddev_samp_fields": { + "captain_steam_id": [ + 26 + ], + "lineup": [ + 26 + ], + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_select_column": {}, - "e_game_cfg_types_set_input": { - "description": [ - 63 + "draft_game_picks_stddev_samp_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_stream_cursor_input": { + "draft_game_picks_stream_cursor_input": { "initial_value": [ - 302 + 279 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_stream_cursor_value_input": { - "description": [ - 63 + "draft_game_picks_stream_cursor_value_input": { + "auto_picked": [ + 3 ], - "value": [ - 63 + "captain_steam_id": [ + 163 + ], + "created_at": [ + 3191 + ], + "draft_game_id": [ + 3588 + ], + "id": [ + 3588 + ], + "lineup": [ + 35 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_game_cfg_types_update_column": {}, - "e_game_cfg_types_updates": { - "_set": [ - 300 + "draft_game_picks_sum_fields": { + "captain_steam_id": [ + 163 ], - "where": [ - 288 + "lineup": [ + 35 + ], + "picked_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses": { - "description": [ - 63 + "draft_game_picks_sum_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_aggregate": { - "aggregate": [ - 307 + "draft_game_picks_update_column": {}, + "draft_game_picks_updates": { + "_inc": [ + 258 ], - "nodes": [ - 305 + "_set": [ + 271 + ], + "where": [ + 256 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 320, - "[e_game_server_node_statuses_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_picks_var_pop_fields": { + "captain_steam_id": [ + 26 ], - "max": [ - 313 + "lineup": [ + 26 ], - "min": [ - 314 + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_bool_exp": { - "_and": [ - 308 - ], - "_not": [ - 308 - ], - "_or": [ - 308 + "draft_game_picks_var_pop_order_by": { + "captain_steam_id": [ + 2005 ], - "description": [ - 65 + "lineup": [ + 2005 ], - "value": [ - 65 + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_constraint": {}, - "e_game_server_node_statuses_enum": {}, - "e_game_server_node_statuses_enum_comparison_exp": { - "_eq": [ - 310 - ], - "_in": [ - 310 - ], - "_is_null": [ - 3 + "draft_game_picks_var_samp_fields": { + "captain_steam_id": [ + 26 ], - "_neq": [ - 310 + "lineup": [ + 26 ], - "_nin": [ - 310 + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_insert_input": { - "description": [ - 63 + "draft_game_picks_var_samp_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_max_fields": { - "description": [ - 63 + "draft_game_picks_variance_fields": { + "captain_steam_id": [ + 26 ], - "value": [ - 63 + "lineup": [ + 26 + ], + "picked_steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_min_fields": { - "description": [ - 63 + "draft_game_picks_variance_order_by": { + "captain_steam_id": [ + 2005 ], - "value": [ - 63 + "lineup": [ + 2005 + ], + "picked_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_mutation_response": { - "affected_rows": [ - 34 + "draft_game_players": { + "draft_game": [ + 335 ], - "returning": [ - 305 + "draft_game_id": [ + 3588 + ], + "e_draft_game_player_status": [ + 464 + ], + "elo_snapshot": [ + 35 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "player": [ + 2872 + ], + "status": [ + 469 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_obj_rel_insert_input": { - "data": [ - 312 + "draft_game_players_aggregate": { + "aggregate": [ + 296 ], - "on_conflict": [ - 317 + "nodes": [ + 290 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_on_conflict": { - "constraint": [ - 309 + "draft_game_players_aggregate_bool_exp": { + "bool_and": [ + 293 ], - "update_columns": [ - 324 + "bool_or": [ + 294 ], - "where": [ - 308 + "count": [ + 295 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_order_by": { - "description": [ - 1736 - ], - "value": [ - 1736 + "draft_game_players_aggregate_bool_exp_bool_and": { + "arguments": [ + 314 ], - "__typename": [ - 63 - ] - }, - "e_game_server_node_statuses_pk_columns_input": { - "value": [ - 63 + "distinct": [ + 3 ], - "__typename": [ - 63 - ] - }, - "e_game_server_node_statuses_select_column": {}, - "e_game_server_node_statuses_set_input": { - "description": [ - 63 + "filter": [ + 301 ], - "value": [ - 63 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_stream_cursor_input": { - "initial_value": [ - 323 + "draft_game_players_aggregate_bool_exp_bool_or": { + "arguments": [ + 315 ], - "ordering": [ - 216 + "distinct": [ + 3 ], - "__typename": [ - 63 - ] - }, - "e_game_server_node_statuses_stream_cursor_value_input": { - "description": [ - 63 + "filter": [ + 301 ], - "value": [ - 63 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_game_server_node_statuses_update_column": {}, - "e_game_server_node_statuses_updates": { - "_set": [ - 321 + "draft_game_players_aggregate_bool_exp_count": { + "arguments": [ + 313 ], - "where": [ - 308 + "distinct": [ + 3 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access": { - "description": [ - 63 + "filter": [ + 301 ], - "value": [ - 63 + "predicate": [ + 36 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_aggregate": { - "aggregate": [ - 328 - ], - "nodes": [ - 326 + "draft_game_players_aggregate_fields": { + "avg": [ + 299 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 341, - "[e_lobby_access_select_column!]" + 313, + "[draft_game_players_select_column!]" ], "distinct": [ 3 @@ -5421,1447 +5466,5700 @@ export default { } ], "max": [ - 334 + 305 ], "min": [ - 335 - ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_bool_exp": { - "_and": [ - 329 - ], - "_not": [ - 329 - ], - "_or": [ - 329 + 307 ], - "description": [ - 65 + "stddev": [ + 317 ], - "value": [ - 65 + "stddev_pop": [ + 319 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_constraint": {}, - "e_lobby_access_enum": {}, - "e_lobby_access_enum_comparison_exp": { - "_eq": [ - 331 + "stddev_samp": [ + 321 ], - "_in": [ - 331 + "sum": [ + 325 ], - "_is_null": [ - 3 + "var_pop": [ + 329 ], - "_neq": [ + "var_samp": [ 331 ], - "_nin": [ - 331 + "variance": [ + 333 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_insert_input": { - "description": [ - 63 + "draft_game_players_aggregate_order_by": { + "avg": [ + 300 ], - "value": [ - 63 + "count": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_max_fields": { - "description": [ - 63 + "max": [ + 306 ], - "value": [ - 63 + "min": [ + 308 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_min_fields": { - "description": [ - 63 + "stddev": [ + 318 ], - "value": [ - 63 + "stddev_pop": [ + 320 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_mutation_response": { - "affected_rows": [ - 34 + "stddev_samp": [ + 322 ], - "returning": [ + "sum": [ 326 ], + "var_pop": [ + 330 + ], + "var_samp": [ + 332 + ], + "variance": [ + 334 + ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_obj_rel_insert_input": { + "draft_game_players_arr_rel_insert_input": { "data": [ - 333 + 304 ], "on_conflict": [ - 338 + 310 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_on_conflict": { - "constraint": [ - 330 + "draft_game_players_avg_fields": { + "elo_snapshot": [ + 26 ], - "update_columns": [ - 345 + "lineup": [ + 26 ], - "where": [ - 329 + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_order_by": { - "description": [ - 1736 + "draft_game_players_avg_order_by": { + "elo_snapshot": [ + 2005 ], - "value": [ - 1736 + "lineup": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_pk_columns_input": { - "value": [ - 63 + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_access_select_column": {}, - "e_lobby_access_set_input": { - "description": [ - 63 + "draft_game_players_bool_exp": { + "_and": [ + 301 ], - "value": [ - 63 + "_not": [ + 301 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_stream_cursor_input": { - "initial_value": [ - 344 + "_or": [ + 301 ], - "ordering": [ - 216 + "draft_game": [ + 346 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_stream_cursor_value_input": { - "description": [ - 63 + "draft_game_id": [ + 3589 ], - "value": [ - 63 + "e_draft_game_player_status": [ + 467 ], - "__typename": [ - 63 - ] - }, - "e_lobby_access_update_column": {}, - "e_lobby_access_updates": { - "_set": [ - 342 + "elo_snapshot": [ + 36 ], - "where": [ - 329 + "is_captain": [ + 4 ], - "__typename": [ - 63 - ] - }, - "e_lobby_player_status": { - "description": [ - 63 + "joined_at": [ + 3192 ], - "value": [ - 63 + "lineup": [ + 36 ], - "__typename": [ - 63 - ] - }, - "e_lobby_player_status_aggregate": { - "aggregate": [ - 349 + "pick_order": [ + 36 ], - "nodes": [ - 347 + "player": [ + 2876 + ], + "status": [ + 470 + ], + "steam_id": [ + 164 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 361, - "[e_lobby_player_status_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_players_constraint": {}, + "draft_game_players_inc_input": { + "elo_snapshot": [ + 35 ], - "max": [ - 355 + "lineup": [ + 35 ], - "min": [ - 356 + "pick_order": [ + 35 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_bool_exp": { - "_and": [ - 350 + "draft_game_players_insert_input": { + "draft_game": [ + 355 ], - "_not": [ - 350 + "draft_game_id": [ + 3588 ], - "_or": [ - 350 + "e_draft_game_player_status": [ + 475 ], - "description": [ - 65 + "elo_snapshot": [ + 35 ], - "value": [ - 65 + "is_captain": [ + 3 + ], + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "player": [ + 2883 + ], + "status": [ + 469 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_constraint": {}, - "e_lobby_player_status_enum": {}, - "e_lobby_player_status_enum_comparison_exp": { - "_eq": [ - 352 + "draft_game_players_max_fields": { + "draft_game_id": [ + 3588 ], - "_in": [ - 352 + "elo_snapshot": [ + 35 ], - "_is_null": [ - 3 + "joined_at": [ + 3191 ], - "_neq": [ - 352 + "lineup": [ + 35 ], - "_nin": [ - 352 + "pick_order": [ + 35 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_insert_input": { - "description": [ - 63 + "draft_game_players_max_order_by": { + "draft_game_id": [ + 2005 ], - "value": [ - 63 + "elo_snapshot": [ + 2005 + ], + "joined_at": [ + 2005 + ], + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_max_fields": { - "description": [ - 63 + "draft_game_players_min_fields": { + "draft_game_id": [ + 3588 ], - "value": [ - 63 + "elo_snapshot": [ + 35 + ], + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_min_fields": { - "description": [ - 63 + "draft_game_players_min_order_by": { + "draft_game_id": [ + 2005 ], - "value": [ - 63 + "elo_snapshot": [ + 2005 + ], + "joined_at": [ + 2005 + ], + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_mutation_response": { + "draft_game_players_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 347 + 290 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_on_conflict": { + "draft_game_players_on_conflict": { "constraint": [ - 351 + 302 ], "update_columns": [ - 365 + 327 ], "where": [ - 350 + 301 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_order_by": { - "description": [ - 1736 + "draft_game_players_order_by": { + "draft_game": [ + 357 ], - "value": [ - 1736 + "draft_game_id": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "e_lobby_player_status_pk_columns_input": { - "value": [ - 63 + "e_draft_game_player_status": [ + 477 ], - "__typename": [ - 63 - ] - }, - "e_lobby_player_status_select_column": {}, - "e_lobby_player_status_set_input": { - "description": [ - 63 + "elo_snapshot": [ + 2005 ], - "value": [ - 63 + "is_captain": [ + 2005 + ], + "joined_at": [ + 2005 + ], + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "player": [ + 2885 + ], + "status": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_stream_cursor_input": { - "initial_value": [ - 364 + "draft_game_players_pk_columns_input": { + "draft_game_id": [ + 3588 ], - "ordering": [ - 216 + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_lobby_player_status_stream_cursor_value_input": { - "description": [ - 63 + "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": [ + 3588 ], - "value": [ - 63 + "elo_snapshot": [ + 35 ], - "__typename": [ - 63 - ] - }, - "e_lobby_player_status_update_column": {}, - "e_lobby_player_status_updates": { - "_set": [ - 362 + "is_captain": [ + 3 ], - "where": [ - 350 + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "status": [ + 469 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types": { - "description": [ - 63 + "draft_game_players_stddev_fields": { + "elo_snapshot": [ + 26 ], - "value": [ - 63 + "lineup": [ + 26 + ], + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_aggregate": { - "aggregate": [ - 369 + "draft_game_players_stddev_order_by": { + "elo_snapshot": [ + 2005 ], - "nodes": [ - 367 + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 382, - "[e_map_pool_types_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_game_players_stddev_pop_fields": { + "elo_snapshot": [ + 26 ], - "max": [ - 375 + "lineup": [ + 26 ], - "min": [ - 376 + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_bool_exp": { - "_and": [ - 370 - ], - "_not": [ - 370 + "draft_game_players_stddev_pop_order_by": { + "elo_snapshot": [ + 2005 ], - "_or": [ - 370 + "lineup": [ + 2005 ], - "description": [ - 65 + "pick_order": [ + 2005 ], - "value": [ - 65 + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_constraint": {}, - "e_map_pool_types_enum": {}, - "e_map_pool_types_enum_comparison_exp": { - "_eq": [ - 372 - ], - "_in": [ - 372 + "draft_game_players_stddev_samp_fields": { + "elo_snapshot": [ + 26 ], - "_is_null": [ - 3 + "lineup": [ + 26 ], - "_neq": [ - 372 + "pick_order": [ + 26 ], - "_nin": [ - 372 + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_insert_input": { - "description": [ - 63 + "draft_game_players_stddev_samp_order_by": { + "elo_snapshot": [ + 2005 ], - "value": [ - 63 + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_max_fields": { - "description": [ - 63 + "draft_game_players_stream_cursor_input": { + "initial_value": [ + 324 ], - "value": [ - 63 + "ordering": [ + 217 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_min_fields": { - "description": [ - 63 + "draft_game_players_stream_cursor_value_input": { + "draft_game_id": [ + 3588 ], - "value": [ - 63 + "elo_snapshot": [ + 35 + ], + "is_captain": [ + 3 + ], + "joined_at": [ + 3191 + ], + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "status": [ + 469 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_mutation_response": { - "affected_rows": [ - 34 + "draft_game_players_sum_fields": { + "elo_snapshot": [ + 35 ], - "returning": [ - 367 + "lineup": [ + 35 + ], + "pick_order": [ + 35 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_obj_rel_insert_input": { - "data": [ - 374 + "draft_game_players_sum_order_by": { + "elo_snapshot": [ + 2005 ], - "on_conflict": [ - 379 + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_on_conflict": { - "constraint": [ - 371 + "draft_game_players_update_column": {}, + "draft_game_players_updates": { + "_inc": [ + 303 ], - "update_columns": [ - 386 + "_set": [ + 316 ], "where": [ - 370 + 301 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_order_by": { - "description": [ - 1736 + "draft_game_players_var_pop_fields": { + "elo_snapshot": [ + 26 ], - "value": [ - 1736 + "lineup": [ + 26 + ], + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_pk_columns_input": { - "value": [ - 63 + "draft_game_players_var_pop_order_by": { + "elo_snapshot": [ + 2005 + ], + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_select_column": {}, - "e_map_pool_types_set_input": { - "description": [ - 63 + "draft_game_players_var_samp_fields": { + "elo_snapshot": [ + 26 ], - "value": [ - 63 + "lineup": [ + 26 + ], + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_stream_cursor_input": { - "initial_value": [ - 385 + "draft_game_players_var_samp_order_by": { + "elo_snapshot": [ + 2005 ], - "ordering": [ - 216 + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_stream_cursor_value_input": { - "description": [ - 63 + "draft_game_players_variance_fields": { + "elo_snapshot": [ + 26 ], - "value": [ - 63 + "lineup": [ + 26 + ], + "pick_order": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_map_pool_types_update_column": {}, - "e_map_pool_types_updates": { - "_set": [ - 383 + "draft_game_players_variance_order_by": { + "elo_snapshot": [ + 2005 ], - "where": [ - 370 + "lineup": [ + 2005 + ], + "pick_order": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility": { - "description": [ - 63 + "draft_games": { + "access": [ + 573 ], - "match_clips": [ - 1084, + "capacity": [ + 35 + ], + "captain_selection": [ + 406 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "draft_order": [ + 427 + ], + "e_draft_game_captain_selection": [ + 401 + ], + "e_draft_game_draft_order": [ + 422 + ], + "e_draft_game_mode": [ + 443 + ], + "e_draft_game_status": [ + 485 + ], + "e_lobby_access": [ + 568 + ], + "expires_at": [ + 3191 + ], + "host": [ + 2872 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3588 + ], + "map_pool": [ + 1278 + ], + "map_pool_id": [ + 3588 + ], + "match": [ + 1820 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "mode": [ + 448 + ], + "options": [ + 1700 + ], + "pick_deadline": [ + 3191 + ], + "picks": [ + 245, { "distinct_on": [ - 1106, - "[match_clips_select_column!]" + 268, + "[draft_game_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, - "[match_clips_order_by!]" + 266, + "[draft_game_picks_order_by!]" ], "where": [ - 1093 + 256 ] } ], - "match_clips_aggregate": [ - 1085, + "picks_aggregate": [ + 246, { "distinct_on": [ - 1106, - "[match_clips_select_column!]" + 268, + "[draft_game_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, - "[match_clips_order_by!]" + 266, + "[draft_game_picks_order_by!]" ], "where": [ - 1093 + 256 ] } ], - "value": [ - 63 + "players": [ + 290, + { + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" + ], + "where": [ + 301 + ] + } + ], + "players_aggregate": [ + 291, + { + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" + ], + "where": [ + 301 + ] + } + ], + "regions": [ + 64 + ], + "require_approval": [ + 3 + ], + "status": [ + 490 + ], + "team_1": [ + 3148 + ], + "team_1_id": [ + 3588 + ], + "team_2": [ + 3148 + ], + "team_2_id": [ + 3588 + ], + "type": [ + 717 + ], + "updated_at": [ + 3191 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_aggregate": { + "draft_games_aggregate": { "aggregate": [ - 390 + 341 ], "nodes": [ - 388 + 335 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 402, - "[e_match_clip_visibility_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_games_aggregate_bool_exp": { + "bool_and": [ + 338 ], - "max": [ - 396 + "bool_or": [ + 339 ], - "min": [ - 397 + "count": [ + 340 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_bool_exp": { - "_and": [ - 391 - ], - "_not": [ - 391 - ], - "_or": [ - 391 - ], - "description": [ - 65 + "draft_games_aggregate_bool_exp_bool_and": { + "arguments": [ + 360 ], - "match_clips": [ - 1093 + "distinct": [ + 3 ], - "match_clips_aggregate": [ - 1086 + "filter": [ + 346 ], - "value": [ - 65 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_constraint": {}, - "e_match_clip_visibility_enum": {}, - "e_match_clip_visibility_enum_comparison_exp": { - "_eq": [ - 393 - ], - "_in": [ - 393 + "draft_games_aggregate_bool_exp_bool_or": { + "arguments": [ + 361 ], - "_is_null": [ + "distinct": [ 3 ], - "_neq": [ - 393 + "filter": [ + 346 ], - "_nin": [ - 393 + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_insert_input": { - "description": [ - 63 + "draft_games_aggregate_bool_exp_count": { + "arguments": [ + 359 ], - "match_clips": [ - 1090 + "distinct": [ + 3 ], - "value": [ - 63 + "filter": [ + 346 + ], + "predicate": [ + 36 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_max_fields": { - "description": [ - 63 + "draft_games_aggregate_fields": { + "avg": [ + 344 ], - "value": [ - 63 + "count": [ + 35, + { + "columns": [ + 359, + "[draft_games_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_min_fields": { - "description": [ - 63 + "max": [ + 350 ], - "value": [ - 63 + "min": [ + 352 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_mutation_response": { - "affected_rows": [ - 34 + "stddev": [ + 363 ], - "returning": [ - 388 + "stddev_pop": [ + 365 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_on_conflict": { - "constraint": [ - 392 + "stddev_samp": [ + 367 ], - "update_columns": [ - 406 + "sum": [ + 371 ], - "where": [ - 391 + "var_pop": [ + 375 + ], + "var_samp": [ + 377 + ], + "variance": [ + 379 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_order_by": { - "description": [ - 1736 + "draft_games_aggregate_order_by": { + "avg": [ + 345 ], - "match_clips_aggregate": [ - 1089 + "count": [ + 2005 ], - "value": [ - 1736 + "max": [ + 351 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_pk_columns_input": { - "value": [ - 63 + "min": [ + 353 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_select_column": {}, - "e_match_clip_visibility_set_input": { - "description": [ - 63 + "stddev": [ + 364 ], - "value": [ - 63 + "stddev_pop": [ + 366 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_stream_cursor_input": { - "initial_value": [ - 405 + "stddev_samp": [ + 368 ], - "ordering": [ - 216 + "sum": [ + 372 ], - "__typename": [ - 63 - ] - }, - "e_match_clip_visibility_stream_cursor_value_input": { - "description": [ - 63 + "var_pop": [ + 376 ], - "value": [ - 63 + "var_samp": [ + 378 + ], + "variance": [ + 380 ], "__typename": [ - 63 + 64 ] }, - "e_match_clip_visibility_update_column": {}, - "e_match_clip_visibility_updates": { - "_set": [ - 403 + "draft_games_arr_rel_insert_input": { + "data": [ + 349 ], - "where": [ - 391 + "on_conflict": [ + 356 ], "__typename": [ - 63 + 64 ] }, - "e_match_map_status": { - "description": [ - 63 + "draft_games_avg_fields": { + "capacity": [ + 26 ], - "match_maps": [ - 1416, - { - "distinct_on": [ - 1438, - "[match_maps_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1436, - "[match_maps_order_by!]" - ], - "where": [ - 1425 - ] - } + "current_pick_lineup": [ + 26 ], - "match_maps_aggregate": [ - 1417, - { - "distinct_on": [ - 1438, - "[match_maps_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1436, - "[match_maps_order_by!]" - ], - "where": [ - 1425 - ] - } + "host_steam_id": [ + 26 ], - "value": [ - 63 + "max_elo": [ + 26 + ], + "min_elo": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "e_match_map_status_aggregate": { - "aggregate": [ - 410 + "draft_games_avg_order_by": { + "capacity": [ + 2005 ], - "nodes": [ - 408 + "current_pick_lineup": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 423, - "[e_match_map_status_select_column!]" - ], - "distinct": [ - 3 - ] - } + "host_steam_id": [ + 2005 ], - "max": [ - 416 + "max_elo": [ + 2005 ], - "min": [ - 417 + "min_elo": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "e_match_map_status_bool_exp": { + "draft_games_bool_exp": { "_and": [ - 411 + 346 ], "_not": [ - 411 + 346 ], "_or": [ - 411 + 346 ], - "description": [ - 65 + "access": [ + 574 ], - "match_maps": [ - 1425 + "capacity": [ + 36 ], - "match_maps_aggregate": [ - 1418 + "captain_selection": [ + 407 ], - "value": [ - 65 + "created_at": [ + 3192 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_constraint": {}, - "e_match_map_status_enum": {}, - "e_match_map_status_enum_comparison_exp": { - "_eq": [ - 413 + "current_pick_lineup": [ + 36 ], - "_in": [ - 413 + "draft_order": [ + 428 ], - "_is_null": [ - 3 + "e_draft_game_captain_selection": [ + 404 ], - "_neq": [ - 413 + "e_draft_game_draft_order": [ + 425 ], - "_nin": [ - 413 + "e_draft_game_mode": [ + 446 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_insert_input": { - "description": [ - 63 + "e_draft_game_status": [ + 488 ], - "match_maps": [ - 1422 + "e_lobby_access": [ + 571 ], - "value": [ - 63 + "expires_at": [ + 3192 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_max_fields": { - "description": [ - 63 + "host": [ + 2876 ], - "value": [ - 63 + "host_steam_id": [ + 164 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_min_fields": { - "description": [ - 63 + "id": [ + 3589 ], - "value": [ - 63 + "inner_squad": [ + 4 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_mutation_response": { - "affected_rows": [ - 34 + "invite_code": [ + 3589 ], - "returning": [ - 408 + "map_pool": [ + 1281 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_obj_rel_insert_input": { - "data": [ - 415 + "map_pool_id": [ + 3589 ], - "on_conflict": [ - 420 + "match": [ + 1829 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_on_conflict": { - "constraint": [ - 412 + "match_id": [ + 3589 ], - "update_columns": [ - 427 + "match_options_id": [ + 3589 ], - "where": [ - 411 + "max_elo": [ + 36 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_order_by": { - "description": [ - 1736 + "min_elo": [ + 36 ], - "match_maps_aggregate": [ - 1421 + "mode": [ + 449 ], - "value": [ - 1736 + "options": [ + 1704 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_pk_columns_input": { - "value": [ - 63 + "pick_deadline": [ + 3192 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_select_column": {}, - "e_match_map_status_set_input": { - "description": [ - 63 + "picks": [ + 256 ], - "value": [ - 63 + "picks_aggregate": [ + 247 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_stream_cursor_input": { - "initial_value": [ - 426 + "players": [ + 301 ], - "ordering": [ - 216 + "players_aggregate": [ + 292 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_stream_cursor_value_input": { - "description": [ - 63 + "regions": [ + 65 ], - "value": [ - 63 + "require_approval": [ + 4 ], - "__typename": [ - 63 - ] - }, - "e_match_map_status_update_column": {}, - "e_match_map_status_updates": { - "_set": [ - 424 + "status": [ + 491 ], - "where": [ - 411 + "team_1": [ + 3157 ], - "__typename": [ - 63 - ] - }, - "e_match_mode": { - "description": [ - 63 + "team_1_id": [ + 3589 ], - "value": [ - 63 + "team_2": [ + 3157 ], - "__typename": [ - 63 - ] - }, - "e_match_mode_aggregate": { - "aggregate": [ - 431 + "team_2_id": [ + 3589 ], - "nodes": [ - 429 + "type": [ + 718 + ], + "updated_at": [ + 3192 ], "__typename": [ - 63 + 64 ] }, - "e_match_mode_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 443, - "[e_match_mode_select_column!]" - ], - "distinct": [ - 3 - ] - } + "draft_games_constraint": {}, + "draft_games_inc_input": { + "capacity": [ + 35 ], - "max": [ - 437 + "current_pick_lineup": [ + 35 ], - "min": [ - 438 + "host_steam_id": [ + 163 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 ], "__typename": [ - 63 + 64 ] }, - "e_match_mode_bool_exp": { - "_and": [ - 432 + "draft_games_insert_input": { + "access": [ + 573 ], - "_not": [ - 432 + "capacity": [ + 35 ], - "_or": [ - 432 + "captain_selection": [ + 406 ], - "description": [ - 65 + "created_at": [ + 3191 ], - "value": [ - 65 + "current_pick_lineup": [ + 35 ], - "__typename": [ - 63 - ] - }, - "e_match_mode_constraint": {}, - "e_match_mode_enum": {}, - "e_match_mode_enum_comparison_exp": { - "_eq": [ - 434 + "draft_order": [ + 427 ], - "_in": [ - 434 + "e_draft_game_captain_selection": [ + 412 ], - "_is_null": [ - 3 + "e_draft_game_draft_order": [ + 433 ], - "_neq": [ - 434 + "e_draft_game_mode": [ + 454 ], - "_nin": [ - 434 + "e_draft_game_status": [ + 496 ], - "__typename": [ - 63 - ] - }, - "e_match_mode_insert_input": { - "description": [ - 63 + "e_lobby_access": [ + 579 ], - "value": [ - 63 + "expires_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "e_match_mode_max_fields": { - "description": [ - 63 + "host": [ + 2883 ], - "value": [ - 63 + "host_steam_id": [ + 163 ], - "__typename": [ - 63 - ] - }, - "e_match_mode_min_fields": { - "description": [ - 63 + "id": [ + 3588 ], - "value": [ - 63 + "inner_squad": [ + 3 ], - "__typename": [ - 63 + "invite_code": [ + 3588 + ], + "map_pool": [ + 1287 + ], + "map_pool_id": [ + 3588 + ], + "match": [ + 1838 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "mode": [ + 448 + ], + "options": [ + 1711 + ], + "pick_deadline": [ + 3191 + ], + "picks": [ + 253 + ], + "players": [ + 298 + ], + "regions": [ + 64 + ], + "require_approval": [ + 3 + ], + "status": [ + 490 + ], + "team_1": [ + 3166 + ], + "team_1_id": [ + 3588 + ], + "team_2": [ + 3166 + ], + "team_2_id": [ + 3588 + ], + "type": [ + 717 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 64 + ] + }, + "draft_games_max_fields": { + "capacity": [ + 35 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "expires_at": [ + 3191 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "invite_code": [ + 3588 + ], + "map_pool_id": [ + 3588 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "pick_deadline": [ + 3191 + ], + "regions": [ + 64 + ], + "team_1_id": [ + 3588 + ], + "team_2_id": [ + 3588 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 64 + ] + }, + "draft_games_max_order_by": { + "capacity": [ + 2005 + ], + "created_at": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "expires_at": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "id": [ + 2005 + ], + "invite_code": [ + 2005 + ], + "map_pool_id": [ + 2005 + ], + "match_id": [ + 2005 + ], + "match_options_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "pick_deadline": [ + 2005 + ], + "regions": [ + 2005 + ], + "team_1_id": [ + 2005 + ], + "team_2_id": [ + 2005 + ], + "updated_at": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_min_fields": { + "capacity": [ + 35 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "expires_at": [ + 3191 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "invite_code": [ + 3588 + ], + "map_pool_id": [ + 3588 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "pick_deadline": [ + 3191 + ], + "regions": [ + 64 + ], + "team_1_id": [ + 3588 + ], + "team_2_id": [ + 3588 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 64 + ] + }, + "draft_games_min_order_by": { + "capacity": [ + 2005 + ], + "created_at": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "expires_at": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "id": [ + 2005 + ], + "invite_code": [ + 2005 + ], + "map_pool_id": [ + 2005 + ], + "match_id": [ + 2005 + ], + "match_options_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "pick_deadline": [ + 2005 + ], + "regions": [ + 2005 + ], + "team_1_id": [ + 2005 + ], + "team_2_id": [ + 2005 + ], + "updated_at": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 335 + ], + "__typename": [ + 64 + ] + }, + "draft_games_obj_rel_insert_input": { + "data": [ + 349 + ], + "on_conflict": [ + 356 + ], + "__typename": [ + 64 + ] + }, + "draft_games_on_conflict": { + "constraint": [ + 347 + ], + "update_columns": [ + 373 + ], + "where": [ + 346 + ], + "__typename": [ + 64 + ] + }, + "draft_games_order_by": { + "access": [ + 2005 + ], + "capacity": [ + 2005 + ], + "captain_selection": [ + 2005 + ], + "created_at": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "draft_order": [ + 2005 + ], + "e_draft_game_captain_selection": [ + 414 + ], + "e_draft_game_draft_order": [ + 435 + ], + "e_draft_game_mode": [ + 456 + ], + "e_draft_game_status": [ + 498 + ], + "e_lobby_access": [ + 581 + ], + "expires_at": [ + 2005 + ], + "host": [ + 2885 + ], + "host_steam_id": [ + 2005 + ], + "id": [ + 2005 + ], + "inner_squad": [ + 2005 + ], + "invite_code": [ + 2005 + ], + "map_pool": [ + 1289 + ], + "map_pool_id": [ + 2005 + ], + "match": [ + 1840 + ], + "match_id": [ + 2005 + ], + "match_options_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "mode": [ + 2005 + ], + "options": [ + 1713 + ], + "pick_deadline": [ + 2005 + ], + "picks_aggregate": [ + 252 + ], + "players_aggregate": [ + 297 + ], + "regions": [ + 2005 + ], + "require_approval": [ + 2005 + ], + "status": [ + 2005 + ], + "team_1": [ + 3168 + ], + "team_1_id": [ + 2005 + ], + "team_2": [ + 3168 + ], + "team_2_id": [ + 2005 + ], + "type": [ + 2005 + ], + "updated_at": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_pk_columns_input": { + "id": [ + 3588 + ], + "__typename": [ + 64 + ] + }, + "draft_games_select_column": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_and_arguments_columns": {}, + "draft_games_select_column_draft_games_aggregate_bool_exp_bool_or_arguments_columns": {}, + "draft_games_set_input": { + "access": [ + 573 + ], + "capacity": [ + 35 + ], + "captain_selection": [ + 406 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "draft_order": [ + 427 + ], + "expires_at": [ + 3191 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3588 + ], + "map_pool_id": [ + 3588 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "mode": [ + 448 + ], + "pick_deadline": [ + 3191 + ], + "regions": [ + 64 + ], + "require_approval": [ + 3 + ], + "status": [ + 490 + ], + "team_1_id": [ + 3588 + ], + "team_2_id": [ + 3588 + ], + "type": [ + 717 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_pop_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_pop_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_samp_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stddev_samp_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stream_cursor_input": { + "initial_value": [ + 370 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "draft_games_stream_cursor_value_input": { + "access": [ + 573 + ], + "capacity": [ + 35 + ], + "captain_selection": [ + 406 + ], + "created_at": [ + 3191 + ], + "current_pick_lineup": [ + 35 + ], + "draft_order": [ + 427 + ], + "expires_at": [ + 3191 + ], + "host_steam_id": [ + 163 + ], + "id": [ + 3588 + ], + "inner_squad": [ + 3 + ], + "invite_code": [ + 3588 + ], + "map_pool_id": [ + 3588 + ], + "match_id": [ + 3588 + ], + "match_options_id": [ + 3588 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "mode": [ + 448 + ], + "pick_deadline": [ + 3191 + ], + "regions": [ + 64 + ], + "require_approval": [ + 3 + ], + "status": [ + 490 + ], + "team_1_id": [ + 3588 + ], + "team_2_id": [ + 3588 + ], + "type": [ + 717 + ], + "updated_at": [ + 3191 + ], + "__typename": [ + 64 + ] + }, + "draft_games_sum_fields": { + "capacity": [ + 35 + ], + "current_pick_lineup": [ + 35 + ], + "host_steam_id": [ + 163 + ], + "max_elo": [ + 35 + ], + "min_elo": [ + 35 + ], + "__typename": [ + 64 + ] + }, + "draft_games_sum_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_update_column": {}, + "draft_games_updates": { + "_inc": [ + 348 + ], + "_set": [ + 362 + ], + "where": [ + 346 + ], + "__typename": [ + 64 + ] + }, + "draft_games_var_pop_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_var_pop_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_var_samp_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_var_samp_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "draft_games_variance_fields": { + "capacity": [ + 26 + ], + "current_pick_lineup": [ + 26 + ], + "host_steam_id": [ + 26 + ], + "max_elo": [ + 26 + ], + "min_elo": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "draft_games_variance_order_by": { + "capacity": [ + 2005 + ], + "current_pick_lineup": [ + 2005 + ], + "host_steam_id": [ + 2005 + ], + "max_elo": [ + 2005 + ], + "min_elo": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_aggregate": { + "aggregate": [ + 383 + ], + "nodes": [ + 381 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 395, + "[e_check_in_settings_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 389 + ], + "min": [ + 390 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_bool_exp": { + "_and": [ + 384 + ], + "_not": [ + 384 + ], + "_or": [ + 384 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_constraint": {}, + "e_check_in_settings_enum": {}, + "e_check_in_settings_enum_comparison_exp": { + "_eq": [ + 386 + ], + "_in": [ + 386 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 386 + ], + "_nin": [ + 386 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 381 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_on_conflict": { + "constraint": [ + 385 + ], + "update_columns": [ + 399 + ], + "where": [ + 384 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_select_column": {}, + "e_check_in_settings_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_stream_cursor_input": { + "initial_value": [ + 398 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_check_in_settings_update_column": {}, + "e_check_in_settings_updates": { + "_set": [ + 396 + ], + "where": [ + 384 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_aggregate": { + "aggregate": [ + 403 + ], + "nodes": [ + 401 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 416, + "[e_draft_game_captain_selection_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 409 + ], + "min": [ + 410 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_bool_exp": { + "_and": [ + 404 + ], + "_not": [ + 404 + ], + "_or": [ + 404 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_constraint": {}, + "e_draft_game_captain_selection_enum": {}, + "e_draft_game_captain_selection_enum_comparison_exp": { + "_eq": [ + 406 + ], + "_in": [ + 406 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 406 + ], + "_nin": [ + 406 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 401 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_obj_rel_insert_input": { + "data": [ + 408 + ], + "on_conflict": [ + 413 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_on_conflict": { + "constraint": [ + 405 + ], + "update_columns": [ + 420 + ], + "where": [ + 404 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_select_column": {}, + "e_draft_game_captain_selection_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_stream_cursor_input": { + "initial_value": [ + 419 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_captain_selection_update_column": {}, + "e_draft_game_captain_selection_updates": { + "_set": [ + 417 + ], + "where": [ + 404 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_aggregate": { + "aggregate": [ + 424 + ], + "nodes": [ + 422 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 437, + "[e_draft_game_draft_order_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 430 + ], + "min": [ + 431 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_bool_exp": { + "_and": [ + 425 + ], + "_not": [ + 425 + ], + "_or": [ + 425 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_constraint": {}, + "e_draft_game_draft_order_enum": {}, + "e_draft_game_draft_order_enum_comparison_exp": { + "_eq": [ + 427 + ], + "_in": [ + 427 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 427 + ], + "_nin": [ + 427 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 422 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_obj_rel_insert_input": { + "data": [ + 429 + ], + "on_conflict": [ + 434 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_on_conflict": { + "constraint": [ + 426 + ], + "update_columns": [ + 441 + ], + "where": [ + 425 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_select_column": {}, + "e_draft_game_draft_order_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_stream_cursor_input": { + "initial_value": [ + 440 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_draft_order_update_column": {}, + "e_draft_game_draft_order_updates": { + "_set": [ + 438 + ], + "where": [ + 425 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_aggregate": { + "aggregate": [ + 445 + ], + "nodes": [ + 443 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 458, + "[e_draft_game_mode_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 451 + ], + "min": [ + 452 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_bool_exp": { + "_and": [ + 446 + ], + "_not": [ + 446 + ], + "_or": [ + 446 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_constraint": {}, + "e_draft_game_mode_enum": {}, + "e_draft_game_mode_enum_comparison_exp": { + "_eq": [ + 448 + ], + "_in": [ + 448 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 448 + ], + "_nin": [ + 448 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 443 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_obj_rel_insert_input": { + "data": [ + 450 + ], + "on_conflict": [ + 455 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_on_conflict": { + "constraint": [ + 447 + ], + "update_columns": [ + 462 + ], + "where": [ + 446 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_select_column": {}, + "e_draft_game_mode_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_stream_cursor_input": { + "initial_value": [ + 461 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_mode_update_column": {}, + "e_draft_game_mode_updates": { + "_set": [ + 459 + ], + "where": [ + 446 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_aggregate": { + "aggregate": [ + 466 + ], + "nodes": [ + 464 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 479, + "[e_draft_game_player_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 472 + ], + "min": [ + 473 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_bool_exp": { + "_and": [ + 467 + ], + "_not": [ + 467 + ], + "_or": [ + 467 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_constraint": {}, + "e_draft_game_player_status_enum": {}, + "e_draft_game_player_status_enum_comparison_exp": { + "_eq": [ + 469 + ], + "_in": [ + 469 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 469 + ], + "_nin": [ + 469 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 464 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_obj_rel_insert_input": { + "data": [ + 471 + ], + "on_conflict": [ + 476 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_on_conflict": { + "constraint": [ + 468 + ], + "update_columns": [ + 483 + ], + "where": [ + 467 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_select_column": {}, + "e_draft_game_player_status_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_stream_cursor_input": { + "initial_value": [ + 482 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_player_status_update_column": {}, + "e_draft_game_player_status_updates": { + "_set": [ + 480 + ], + "where": [ + 467 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_aggregate": { + "aggregate": [ + 487 + ], + "nodes": [ + 485 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 500, + "[e_draft_game_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 493 + ], + "min": [ + 494 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_bool_exp": { + "_and": [ + 488 + ], + "_not": [ + 488 + ], + "_or": [ + 488 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_constraint": {}, + "e_draft_game_status_enum": {}, + "e_draft_game_status_enum_comparison_exp": { + "_eq": [ + 490 + ], + "_in": [ + 490 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 490 + ], + "_nin": [ + 490 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 485 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_obj_rel_insert_input": { + "data": [ + 492 + ], + "on_conflict": [ + 497 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_on_conflict": { + "constraint": [ + 489 + ], + "update_columns": [ + 504 + ], + "where": [ + 488 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_select_column": {}, + "e_draft_game_status_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_stream_cursor_input": { + "initial_value": [ + 503 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_draft_game_status_update_column": {}, + "e_draft_game_status_updates": { + "_set": [ + 501 + ], + "where": [ + 488 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_aggregate": { + "aggregate": [ + 508 + ], + "nodes": [ + 506 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 521, + "[e_friend_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 514 + ], + "min": [ + 515 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_bool_exp": { + "_and": [ + 509 + ], + "_not": [ + 509 + ], + "_or": [ + 509 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_constraint": {}, + "e_friend_status_enum": {}, + "e_friend_status_enum_comparison_exp": { + "_eq": [ + 511 + ], + "_in": [ + 511 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 511 + ], + "_nin": [ + 511 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 506 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_obj_rel_insert_input": { + "data": [ + 513 + ], + "on_conflict": [ + 518 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_on_conflict": { + "constraint": [ + 510 + ], + "update_columns": [ + 525 + ], + "where": [ + 509 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_select_column": {}, + "e_friend_status_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_stream_cursor_input": { + "initial_value": [ + 524 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_friend_status_update_column": {}, + "e_friend_status_updates": { + "_set": [ + 522 + ], + "where": [ + 509 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_aggregate": { + "aggregate": [ + 529 + ], + "nodes": [ + 527 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 541, + "[e_game_cfg_types_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 535 + ], + "min": [ + 536 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_bool_exp": { + "_and": [ + 530 + ], + "_not": [ + 530 + ], + "_or": [ + 530 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_constraint": {}, + "e_game_cfg_types_enum": {}, + "e_game_cfg_types_enum_comparison_exp": { + "_eq": [ + 532 + ], + "_in": [ + 532 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 532 + ], + "_nin": [ + 532 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 527 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_on_conflict": { + "constraint": [ + 531 + ], + "update_columns": [ + 545 + ], + "where": [ + 530 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_select_column": {}, + "e_game_cfg_types_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_stream_cursor_input": { + "initial_value": [ + 544 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_cfg_types_update_column": {}, + "e_game_cfg_types_updates": { + "_set": [ + 542 + ], + "where": [ + 530 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_aggregate": { + "aggregate": [ + 549 + ], + "nodes": [ + 547 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 562, + "[e_game_server_node_statuses_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 555 + ], + "min": [ + 556 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_bool_exp": { + "_and": [ + 550 + ], + "_not": [ + 550 + ], + "_or": [ + 550 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_constraint": {}, + "e_game_server_node_statuses_enum": {}, + "e_game_server_node_statuses_enum_comparison_exp": { + "_eq": [ + 552 + ], + "_in": [ + 552 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 552 + ], + "_nin": [ + 552 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 547 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_obj_rel_insert_input": { + "data": [ + 554 + ], + "on_conflict": [ + 559 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_on_conflict": { + "constraint": [ + 551 + ], + "update_columns": [ + 566 + ], + "where": [ + 550 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_select_column": {}, + "e_game_server_node_statuses_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_stream_cursor_input": { + "initial_value": [ + 565 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_game_server_node_statuses_update_column": {}, + "e_game_server_node_statuses_updates": { + "_set": [ + 563 + ], + "where": [ + 550 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_aggregate": { + "aggregate": [ + 570 + ], + "nodes": [ + 568 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 583, + "[e_lobby_access_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 576 + ], + "min": [ + 577 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_bool_exp": { + "_and": [ + 571 + ], + "_not": [ + 571 + ], + "_or": [ + 571 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_constraint": {}, + "e_lobby_access_enum": {}, + "e_lobby_access_enum_comparison_exp": { + "_eq": [ + 573 + ], + "_in": [ + 573 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 573 + ], + "_nin": [ + 573 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 568 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_obj_rel_insert_input": { + "data": [ + 575 + ], + "on_conflict": [ + 580 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_on_conflict": { + "constraint": [ + 572 + ], + "update_columns": [ + 587 + ], + "where": [ + 571 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_select_column": {}, + "e_lobby_access_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_stream_cursor_input": { + "initial_value": [ + 586 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_access_update_column": {}, + "e_lobby_access_updates": { + "_set": [ + 584 + ], + "where": [ + 571 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_aggregate": { + "aggregate": [ + 591 + ], + "nodes": [ + 589 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 603, + "[e_lobby_player_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 597 + ], + "min": [ + 598 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_bool_exp": { + "_and": [ + 592 + ], + "_not": [ + 592 + ], + "_or": [ + 592 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_constraint": {}, + "e_lobby_player_status_enum": {}, + "e_lobby_player_status_enum_comparison_exp": { + "_eq": [ + 594 + ], + "_in": [ + 594 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 594 + ], + "_nin": [ + 594 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 589 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_on_conflict": { + "constraint": [ + 593 + ], + "update_columns": [ + 607 + ], + "where": [ + 592 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_select_column": {}, + "e_lobby_player_status_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_stream_cursor_input": { + "initial_value": [ + 606 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_lobby_player_status_update_column": {}, + "e_lobby_player_status_updates": { + "_set": [ + 604 + ], + "where": [ + 592 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_aggregate": { + "aggregate": [ + 611 + ], + "nodes": [ + 609 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 624, + "[e_map_pool_types_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 617 + ], + "min": [ + 618 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_bool_exp": { + "_and": [ + 612 + ], + "_not": [ + 612 + ], + "_or": [ + 612 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_constraint": {}, + "e_map_pool_types_enum": {}, + "e_map_pool_types_enum_comparison_exp": { + "_eq": [ + 614 + ], + "_in": [ + 614 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 614 + ], + "_nin": [ + 614 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 609 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_obj_rel_insert_input": { + "data": [ + 616 + ], + "on_conflict": [ + 621 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_on_conflict": { + "constraint": [ + 613 + ], + "update_columns": [ + 628 + ], + "where": [ + 612 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_order_by": { + "description": [ + 2005 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_select_column": {}, + "e_map_pool_types_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_stream_cursor_input": { + "initial_value": [ + 627 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_map_pool_types_update_column": {}, + "e_map_pool_types_updates": { + "_set": [ + 625 + ], + "where": [ + 612 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility": { + "description": [ + 64 + ], + "match_clips": [ + 1326, + { + "distinct_on": [ + 1348, + "[match_clips_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1346, + "[match_clips_order_by!]" + ], + "where": [ + 1335 + ] + } + ], + "match_clips_aggregate": [ + 1327, + { + "distinct_on": [ + 1348, + "[match_clips_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1346, + "[match_clips_order_by!]" + ], + "where": [ + 1335 + ] + } + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_aggregate": { + "aggregate": [ + 632 + ], + "nodes": [ + 630 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 644, + "[e_match_clip_visibility_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 638 + ], + "min": [ + 639 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_bool_exp": { + "_and": [ + 633 + ], + "_not": [ + 633 + ], + "_or": [ + 633 + ], + "description": [ + 66 + ], + "match_clips": [ + 1335 + ], + "match_clips_aggregate": [ + 1328 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_constraint": {}, + "e_match_clip_visibility_enum": {}, + "e_match_clip_visibility_enum_comparison_exp": { + "_eq": [ + 635 + ], + "_in": [ + 635 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 635 + ], + "_nin": [ + 635 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_insert_input": { + "description": [ + 64 + ], + "match_clips": [ + 1332 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 630 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_on_conflict": { + "constraint": [ + 634 + ], + "update_columns": [ + 648 + ], + "where": [ + 633 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_order_by": { + "description": [ + 2005 + ], + "match_clips_aggregate": [ + 1331 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_select_column": {}, + "e_match_clip_visibility_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_stream_cursor_input": { + "initial_value": [ + 647 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_clip_visibility_update_column": {}, + "e_match_clip_visibility_updates": { + "_set": [ + 645 + ], + "where": [ + 633 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status": { + "description": [ + 64 + ], + "match_maps": [ + 1658, + { + "distinct_on": [ + 1680, + "[match_maps_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1678, + "[match_maps_order_by!]" + ], + "where": [ + 1667 + ] + } + ], + "match_maps_aggregate": [ + 1659, + { + "distinct_on": [ + 1680, + "[match_maps_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1678, + "[match_maps_order_by!]" + ], + "where": [ + 1667 + ] + } + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_aggregate": { + "aggregate": [ + 652 + ], + "nodes": [ + 650 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 665, + "[e_match_map_status_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 658 + ], + "min": [ + 659 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_bool_exp": { + "_and": [ + 653 + ], + "_not": [ + 653 + ], + "_or": [ + 653 + ], + "description": [ + 66 + ], + "match_maps": [ + 1667 + ], + "match_maps_aggregate": [ + 1660 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_constraint": {}, + "e_match_map_status_enum": {}, + "e_match_map_status_enum_comparison_exp": { + "_eq": [ + 655 + ], + "_in": [ + 655 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 655 + ], + "_nin": [ + 655 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_insert_input": { + "description": [ + 64 + ], + "match_maps": [ + 1664 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_mutation_response": { + "affected_rows": [ + 35 + ], + "returning": [ + 650 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_obj_rel_insert_input": { + "data": [ + 657 + ], + "on_conflict": [ + 662 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_on_conflict": { + "constraint": [ + 654 + ], + "update_columns": [ + 669 + ], + "where": [ + 653 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_order_by": { + "description": [ + 2005 + ], + "match_maps_aggregate": [ + 1663 + ], + "value": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_pk_columns_input": { + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_select_column": {}, + "e_match_map_status_set_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_stream_cursor_input": { + "initial_value": [ + 668 + ], + "ordering": [ + 217 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_stream_cursor_value_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_map_status_update_column": {}, + "e_match_map_status_updates": { + "_set": [ + 666 + ], + "where": [ + 653 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_aggregate": { + "aggregate": [ + 673 + ], + "nodes": [ + 671 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 685, + "[e_match_mode_select_column!]" + ], + "distinct": [ + 3 + ] + } + ], + "max": [ + 679 + ], + "min": [ + 680 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_bool_exp": { + "_and": [ + 674 + ], + "_not": [ + 674 + ], + "_or": [ + 674 + ], + "description": [ + 66 + ], + "value": [ + 66 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_constraint": {}, + "e_match_mode_enum": {}, + "e_match_mode_enum_comparison_exp": { + "_eq": [ + 676 + ], + "_in": [ + 676 + ], + "_is_null": [ + 3 + ], + "_neq": [ + 676 + ], + "_nin": [ + 676 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_insert_input": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_max_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 + ] + }, + "e_match_mode_min_fields": { + "description": [ + 64 + ], + "value": [ + 64 + ], + "__typename": [ + 64 ] }, "e_match_mode_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 429 + 671 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_on_conflict": { "constraint": [ - 433 + 675 ], "update_columns": [ - 447 + 689 ], "where": [ - 432 + 674 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_select_column": {}, "e_match_mode_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_stream_cursor_input": { "initial_value": [ - 446 + 688 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_mode_update_column": {}, "e_match_mode_updates": { "_set": [ - 444 + 686 ], "where": [ - 432 + 674 ], "__typename": [ - 63 + 64 ] }, "e_match_status": { "description": [ - 63 + 64 ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_aggregate": [ - 1579, + 1821, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_aggregate": { "aggregate": [ - 451 + 693 ], "nodes": [ - 449 + 691 ], "__typename": [ - 63 + 64 ] }, "e_match_status_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 464, + 706, "[e_match_status_select_column!]" ], "distinct": [ @@ -6870,275 +11168,275 @@ export default { } ], "max": [ - 457 + 699 ], "min": [ - 458 + 700 ], "__typename": [ - 63 + 64 ] }, "e_match_status_bool_exp": { "_and": [ - 452 + 694 ], "_not": [ - 452 + 694 ], "_or": [ - 452 + 694 ], "description": [ - 65 + 66 ], "matches": [ - 1587 + 1829 ], "matches_aggregate": [ - 1580 + 1822 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_match_status_constraint": {}, "e_match_status_enum": {}, "e_match_status_enum_comparison_exp": { "_eq": [ - 454 + 696 ], "_in": [ - 454 + 696 ], "_is_null": [ 3 ], "_neq": [ - 454 + 696 ], "_nin": [ - 454 + 696 ], "__typename": [ - 63 + 64 ] }, "e_match_status_insert_input": { "description": [ - 63 + 64 ], "matches": [ - 1584 + 1826 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 449 + 691 ], "__typename": [ - 63 + 64 ] }, "e_match_status_obj_rel_insert_input": { "data": [ - 456 + 698 ], "on_conflict": [ - 461 + 703 ], "__typename": [ - 63 + 64 ] }, "e_match_status_on_conflict": { "constraint": [ - 453 + 695 ], "update_columns": [ - 468 + 710 ], "where": [ - 452 + 694 ], "__typename": [ - 63 + 64 ] }, "e_match_status_order_by": { "description": [ - 1736 + 2005 ], "matches_aggregate": [ - 1583 + 1825 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_match_status_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_select_column": {}, "e_match_status_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_stream_cursor_input": { "initial_value": [ - 467 + 709 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_match_status_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_status_update_column": {}, "e_match_status_updates": { "_set": [ - 465 + 707 ], "where": [ - 452 + 694 ], "__typename": [ - 63 + 64 ] }, "e_match_types": { "description": [ - 63 + 64 ], "maps": [ - 1055, + 1297, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "maps_aggregate": [ - 1056, + 1298, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_aggregate": { "aggregate": [ - 472 + 714 ], "nodes": [ - 470 + 712 ], "__typename": [ - 63 + 64 ] }, "e_match_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 485, + 727, "[e_match_types_select_column!]" ], "distinct": [ @@ -7147,231 +11445,231 @@ export default { } ], "max": [ - 478 + 720 ], "min": [ - 479 + 721 ], "__typename": [ - 63 + 64 ] }, "e_match_types_bool_exp": { "_and": [ - 473 + 715 ], "_not": [ - 473 + 715 ], "_or": [ - 473 + 715 ], "description": [ - 65 + 66 ], "maps": [ - 1064 + 1306 ], "maps_aggregate": [ - 1057 + 1299 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_match_types_constraint": {}, "e_match_types_enum": {}, "e_match_types_enum_comparison_exp": { "_eq": [ - 475 + 717 ], "_in": [ - 475 + 717 ], "_is_null": [ 3 ], "_neq": [ - 475 + 717 ], "_nin": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "e_match_types_insert_input": { "description": [ - 63 + 64 ], "maps": [ - 1063 + 1305 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 470 + 712 ], "__typename": [ - 63 + 64 ] }, "e_match_types_obj_rel_insert_input": { "data": [ - 477 + 719 ], "on_conflict": [ - 482 + 724 ], "__typename": [ - 63 + 64 ] }, "e_match_types_on_conflict": { "constraint": [ - 474 + 716 ], "update_columns": [ - 489 + 731 ], "where": [ - 473 + 715 ], "__typename": [ - 63 + 64 ] }, "e_match_types_order_by": { "description": [ - 1736 + 2005 ], "maps_aggregate": [ - 1062 + 1304 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_match_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_select_column": {}, "e_match_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_stream_cursor_input": { "initial_value": [ - 488 + 730 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_match_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_match_types_update_column": {}, "e_match_types_updates": { "_set": [ - 486 + 728 ], "where": [ - 473 + 715 ], "__typename": [ - 63 + 64 ] }, "e_notification_types": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_aggregate": { "aggregate": [ - 493 + 735 ], "nodes": [ - 491 + 733 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 505, + 747, "[e_notification_types_select_column!]" ], "distinct": [ @@ -7380,252 +11678,252 @@ export default { } ], "max": [ - 499 + 741 ], "min": [ - 500 + 742 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_bool_exp": { "_and": [ - 494 + 736 ], "_not": [ - 494 + 736 ], "_or": [ - 494 + 736 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_constraint": {}, "e_notification_types_enum": {}, "e_notification_types_enum_comparison_exp": { "_eq": [ - 496 + 738 ], "_in": [ - 496 + 738 ], "_is_null": [ 3 ], "_neq": [ - 496 + 738 ], "_nin": [ - 496 + 738 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 491 + 733 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_on_conflict": { "constraint": [ - 495 + 737 ], "update_columns": [ - 509 + 751 ], "where": [ - 494 + 736 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_select_column": {}, "e_notification_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_stream_cursor_input": { "initial_value": [ - 508 + 750 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_notification_types_update_column": {}, "e_notification_types_updates": { "_set": [ - 506 + 748 ], "where": [ - 494 + 736 ], "__typename": [ - 63 + 64 ] }, "e_objective_types": { "description": [ - 63 + 64 ], "player_objectives": [ - 2292, + 2561, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "player_objectives_aggregate": [ - 2293, + 2562, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_aggregate": { "aggregate": [ - 513 + 755 ], "nodes": [ - 511 + 753 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 525, + 767, "[e_objective_types_select_column!]" ], "distinct": [ @@ -7634,220 +11932,220 @@ export default { } ], "max": [ - 519 + 761 ], "min": [ - 520 + 762 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_bool_exp": { "_and": [ - 514 + 756 ], "_not": [ - 514 + 756 ], "_or": [ - 514 + 756 ], "description": [ - 65 + 66 ], "player_objectives": [ - 2301 + 2570 ], "player_objectives_aggregate": [ - 2294 + 2563 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_constraint": {}, "e_objective_types_enum": {}, "e_objective_types_enum_comparison_exp": { "_eq": [ - 516 + 758 ], "_in": [ - 516 + 758 ], "_is_null": [ 3 ], "_neq": [ - 516 + 758 ], "_nin": [ - 516 + 758 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_insert_input": { "description": [ - 63 + 64 ], "player_objectives": [ - 2298 + 2567 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 511 + 753 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_on_conflict": { "constraint": [ - 515 + 757 ], "update_columns": [ - 529 + 771 ], "where": [ - 514 + 756 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_order_by": { "description": [ - 1736 + 2005 ], "player_objectives_aggregate": [ - 2297 + 2566 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_select_column": {}, "e_objective_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_stream_cursor_input": { "initial_value": [ - 528 + 770 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_objective_types_update_column": {}, "e_objective_types_updates": { "_set": [ - 526 + 768 ], "where": [ - 514 + 756 ], "__typename": [ - 63 + 64 ] }, "e_player_roles": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_aggregate": { "aggregate": [ - 533 + 775 ], "nodes": [ - 531 + 773 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 545, + 787, "[e_player_roles_select_column!]" ], "distinct": [ @@ -7856,208 +12154,208 @@ export default { } ], "max": [ - 539 + 781 ], "min": [ - 540 + 782 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_bool_exp": { "_and": [ - 534 + 776 ], "_not": [ - 534 + 776 ], "_or": [ - 534 + 776 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_constraint": {}, "e_player_roles_enum": {}, "e_player_roles_enum_comparison_exp": { "_eq": [ - 536 + 778 ], "_in": [ - 536 + 778 ], "_is_null": [ 3 ], "_neq": [ - 536 + 778 ], "_nin": [ - 536 + 778 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 531 + 773 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_on_conflict": { "constraint": [ - 535 + 777 ], "update_columns": [ - 549 + 791 ], "where": [ - 534 + 776 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_select_column": {}, "e_player_roles_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_stream_cursor_input": { "initial_value": [ - 548 + 790 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_player_roles_update_column": {}, "e_player_roles_updates": { "_set": [ - 546 + 788 ], "where": [ - 534 + 776 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_aggregate": { "aggregate": [ - 553 + 795 ], "nodes": [ - 551 + 793 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 565, + 807, "[e_ready_settings_select_column!]" ], "distinct": [ @@ -8066,208 +12364,208 @@ export default { } ], "max": [ - 559 + 801 ], "min": [ - 560 + 802 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_bool_exp": { "_and": [ - 554 + 796 ], "_not": [ - 554 + 796 ], "_or": [ - 554 + 796 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_constraint": {}, "e_ready_settings_enum": {}, "e_ready_settings_enum_comparison_exp": { "_eq": [ - 556 + 798 ], "_in": [ - 556 + 798 ], "_is_null": [ 3 ], "_neq": [ - 556 + 798 ], "_nin": [ - 556 + 798 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 551 + 793 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_on_conflict": { "constraint": [ - 555 + 797 ], "update_columns": [ - 569 + 811 ], "where": [ - 554 + 796 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_select_column": {}, "e_ready_settings_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_stream_cursor_input": { "initial_value": [ - 568 + 810 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_ready_settings_update_column": {}, "e_ready_settings_updates": { "_set": [ - 566 + 808 ], "where": [ - 554 + 796 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_aggregate": { "aggregate": [ - 573 + 815 ], "nodes": [ - 571 + 813 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 586, + 828, "[e_sanction_types_select_column!]" ], "distinct": [ @@ -8276,263 +12574,263 @@ export default { } ], "max": [ - 579 + 821 ], "min": [ - 580 + 822 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_bool_exp": { "_and": [ - 574 + 816 ], "_not": [ - 574 + 816 ], "_or": [ - 574 + 816 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_constraint": {}, "e_sanction_types_enum": {}, "e_sanction_types_enum_comparison_exp": { "_eq": [ - 576 + 818 ], "_in": [ - 576 + 818 ], "_is_null": [ 3 ], "_neq": [ - 576 + 818 ], "_nin": [ - 576 + 818 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 571 + 813 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_obj_rel_insert_input": { "data": [ - 578 + 820 ], "on_conflict": [ - 583 + 825 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_on_conflict": { "constraint": [ - 575 + 817 ], "update_columns": [ - 590 + 832 ], "where": [ - 574 + 816 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_select_column": {}, "e_sanction_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_stream_cursor_input": { "initial_value": [ - 589 + 831 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sanction_types_update_column": {}, "e_sanction_types_updates": { "_set": [ - 587 + 829 ], "where": [ - 574 + 816 ], "__typename": [ - 63 + 64 ] }, "e_server_types": { "description": [ - 63 + 64 ], "servers": [ - 2686, + 2955, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_aggregate": [ - 2687, + 2956, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_aggregate": { "aggregate": [ - 594 + 836 ], "nodes": [ - 592 + 834 ], "__typename": [ - 63 + 64 ] }, "e_server_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 606, + 848, "[e_server_types_select_column!]" ], "distinct": [ @@ -8541,308 +12839,308 @@ export default { } ], "max": [ - 600 + 842 ], "min": [ - 601 + 843 ], "__typename": [ - 63 + 64 ] }, "e_server_types_bool_exp": { "_and": [ - 595 + 837 ], "_not": [ - 595 + 837 ], "_or": [ - 595 + 837 ], "description": [ - 65 + 66 ], "servers": [ - 2697 + 2966 ], "servers_aggregate": [ - 2688 + 2957 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_server_types_constraint": {}, "e_server_types_enum": {}, "e_server_types_enum_comparison_exp": { "_eq": [ - 597 + 839 ], "_in": [ - 597 + 839 ], "_is_null": [ 3 ], "_neq": [ - 597 + 839 ], "_nin": [ - 597 + 839 ], "__typename": [ - 63 + 64 ] }, "e_server_types_insert_input": { "description": [ - 63 + 64 ], "servers": [ - 2694 + 2963 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 592 + 834 ], "__typename": [ - 63 + 64 ] }, "e_server_types_on_conflict": { "constraint": [ - 596 + 838 ], "update_columns": [ - 610 + 852 ], "where": [ - 595 + 837 ], "__typename": [ - 63 + 64 ] }, "e_server_types_order_by": { "description": [ - 1736 + 2005 ], "servers_aggregate": [ - 2693 + 2962 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_server_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_select_column": {}, "e_server_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_stream_cursor_input": { "initial_value": [ - 609 + 851 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_server_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_server_types_update_column": {}, "e_server_types_updates": { "_set": [ - 607 + 849 ], "where": [ - 595 + 837 ], "__typename": [ - 63 + 64 ] }, "e_sides": { "description": [ - 63 + 64 ], "match_map_lineup_1": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_map_lineup_1_aggregate": [ - 1417, + 1659, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_map_lineup_2": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_map_lineup_2_aggregate": [ - 1417, + 1659, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_aggregate": { "aggregate": [ - 614 + 856 ], "nodes": [ - 612 + 854 ], "__typename": [ - 63 + 64 ] }, "e_sides_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 626, + 868, "[e_sides_select_column!]" ], "distinct": [ @@ -8851,320 +13149,320 @@ export default { } ], "max": [ - 620 + 862 ], "min": [ - 621 + 863 ], "__typename": [ - 63 + 64 ] }, "e_sides_bool_exp": { "_and": [ - 615 + 857 ], "_not": [ - 615 + 857 ], "_or": [ - 615 + 857 ], "description": [ - 65 + 66 ], "match_map_lineup_1": [ - 1425 + 1667 ], "match_map_lineup_1_aggregate": [ - 1418 + 1660 ], "match_map_lineup_2": [ - 1425 + 1667 ], "match_map_lineup_2_aggregate": [ - 1418 + 1660 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_sides_constraint": {}, "e_sides_enum": {}, "e_sides_enum_comparison_exp": { "_eq": [ - 617 + 859 ], "_in": [ - 617 + 859 ], "_is_null": [ 3 ], "_neq": [ - 617 + 859 ], "_nin": [ - 617 + 859 ], "__typename": [ - 63 + 64 ] }, "e_sides_insert_input": { "description": [ - 63 + 64 ], "match_map_lineup_1": [ - 1422 + 1664 ], "match_map_lineup_2": [ - 1422 + 1664 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 612 + 854 ], "__typename": [ - 63 + 64 ] }, "e_sides_on_conflict": { "constraint": [ - 616 + 858 ], "update_columns": [ - 630 + 872 ], "where": [ - 615 + 857 ], "__typename": [ - 63 + 64 ] }, "e_sides_order_by": { "description": [ - 1736 + 2005 ], "match_map_lineup_1_aggregate": [ - 1421 + 1663 ], "match_map_lineup_2_aggregate": [ - 1421 + 1663 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_sides_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_select_column": {}, "e_sides_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_stream_cursor_input": { "initial_value": [ - 629 + 871 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_sides_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_sides_update_column": {}, "e_sides_updates": { "_set": [ - 627 + 869 ], "where": [ - 615 + 857 ], "__typename": [ - 63 + 64 ] }, "e_team_roles": { "description": [ - 63 + 64 ], "team_rosters": [ - 2834, + 3103, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_rosters_aggregate": [ - 2835, + 3104, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "tournament_team_rosters": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_team_rosters_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_aggregate": { "aggregate": [ - 634 + 876 ], "nodes": [ - 632 + 874 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 647, + 889, "[e_team_roles_select_column!]" ], "distinct": [ @@ -9173,243 +13471,243 @@ export default { } ], "max": [ - 640 + 882 ], "min": [ - 641 + 883 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_bool_exp": { "_and": [ - 635 + 877 ], "_not": [ - 635 + 877 ], "_or": [ - 635 + 877 ], "description": [ - 65 + 66 ], "team_rosters": [ - 2845 + 3114 ], "team_rosters_aggregate": [ - 2836 + 3105 ], "tournament_team_rosters": [ - 3112 + 3381 ], "tournament_team_rosters_aggregate": [ - 3105 + 3374 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_constraint": {}, "e_team_roles_enum": {}, "e_team_roles_enum_comparison_exp": { "_eq": [ - 637 + 879 ], "_in": [ - 637 + 879 ], "_is_null": [ 3 ], "_neq": [ - 637 + 879 ], "_nin": [ - 637 + 879 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_insert_input": { "description": [ - 63 + 64 ], "team_rosters": [ - 2842 + 3111 ], "tournament_team_rosters": [ - 3109 + 3378 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 632 + 874 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_obj_rel_insert_input": { "data": [ - 639 + 881 ], "on_conflict": [ - 644 + 886 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_on_conflict": { "constraint": [ - 636 + 878 ], "update_columns": [ - 651 + 893 ], "where": [ - 635 + 877 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_order_by": { "description": [ - 1736 + 2005 ], "team_rosters_aggregate": [ - 2841 + 3110 ], "tournament_team_rosters_aggregate": [ - 3108 + 3377 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_select_column": {}, "e_team_roles_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_stream_cursor_input": { "initial_value": [ - 650 + 892 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roles_update_column": {}, "e_team_roles_updates": { "_set": [ - 648 + 890 ], "where": [ - 635 + 877 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_aggregate": { "aggregate": [ - 655 + 897 ], "nodes": [ - 653 + 895 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 667, + 909, "[e_team_roster_statuses_select_column!]" ], "distinct": [ @@ -9418,208 +13716,208 @@ export default { } ], "max": [ - 661 + 903 ], "min": [ - 662 + 904 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_bool_exp": { "_and": [ - 656 + 898 ], "_not": [ - 656 + 898 ], "_or": [ - 656 + 898 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_constraint": {}, "e_team_roster_statuses_enum": {}, "e_team_roster_statuses_enum_comparison_exp": { "_eq": [ - 658 + 900 ], "_in": [ - 658 + 900 ], "_is_null": [ 3 ], "_neq": [ - 658 + 900 ], "_nin": [ - 658 + 900 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 653 + 895 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_on_conflict": { "constraint": [ - 657 + 899 ], "update_columns": [ - 671 + 913 ], "where": [ - 656 + 898 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_select_column": {}, "e_team_roster_statuses_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_stream_cursor_input": { "initial_value": [ - 670 + 912 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_team_roster_statuses_update_column": {}, "e_team_roster_statuses_updates": { "_set": [ - 668 + 910 ], "where": [ - 656 + 898 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_aggregate": { "aggregate": [ - 675 + 917 ], "nodes": [ - 673 + 915 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 687, + 929, "[e_timeout_settings_select_column!]" ], "distinct": [ @@ -9628,252 +13926,252 @@ export default { } ], "max": [ - 681 + 923 ], "min": [ - 682 + 924 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_bool_exp": { "_and": [ - 676 + 918 ], "_not": [ - 676 + 918 ], "_or": [ - 676 + 918 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_constraint": {}, "e_timeout_settings_enum": {}, "e_timeout_settings_enum_comparison_exp": { "_eq": [ - 678 + 920 ], "_in": [ - 678 + 920 ], "_is_null": [ 3 ], "_neq": [ - 678 + 920 ], "_nin": [ - 678 + 920 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 673 + 915 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_on_conflict": { "constraint": [ - 677 + 919 ], "update_columns": [ - 691 + 933 ], "where": [ - 676 + 918 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_select_column": {}, "e_timeout_settings_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_stream_cursor_input": { "initial_value": [ - 690 + 932 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_timeout_settings_update_column": {}, "e_timeout_settings_updates": { "_set": [ - 688 + 930 ], "where": [ - 676 + 918 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types": { "description": [ - 63 + 64 ], "tournament_stages": [ - 3011, + 3280, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "tournament_stages_aggregate": [ - 3012, + 3281, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_aggregate": { "aggregate": [ - 695 + 937 ], "nodes": [ - 693 + 935 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 708, + 950, "[e_tournament_stage_types_select_column!]" ], "distinct": [ @@ -9882,275 +14180,275 @@ export default { } ], "max": [ - 701 + 943 ], "min": [ - 702 + 944 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_bool_exp": { "_and": [ - 696 + 938 ], "_not": [ - 696 + 938 ], "_or": [ - 696 + 938 ], "description": [ - 65 + 66 ], "tournament_stages": [ - 3023 + 3292 ], "tournament_stages_aggregate": [ - 3013 + 3282 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_constraint": {}, "e_tournament_stage_types_enum": {}, "e_tournament_stage_types_enum_comparison_exp": { "_eq": [ - 698 + 940 ], "_in": [ - 698 + 940 ], "_is_null": [ 3 ], "_neq": [ - 698 + 940 ], "_nin": [ - 698 + 940 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_insert_input": { "description": [ - 63 + 64 ], "tournament_stages": [ - 3020 + 3289 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 693 + 935 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_obj_rel_insert_input": { "data": [ - 700 + 942 ], "on_conflict": [ - 705 + 947 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_on_conflict": { "constraint": [ - 697 + 939 ], "update_columns": [ - 712 + 954 ], "where": [ - 696 + 938 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_order_by": { "description": [ - 1736 + 2005 ], "tournament_stages_aggregate": [ - 3018 + 3287 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_select_column": {}, "e_tournament_stage_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_stream_cursor_input": { "initial_value": [ - 711 + 953 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_stage_types_update_column": {}, "e_tournament_stage_types_updates": { "_set": [ - 709 + 951 ], "where": [ - 696 + 938 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status": { "description": [ - 63 + 64 ], "tournaments": [ - 3273, + 3542, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_aggregate": [ - 3274, + 3543, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_aggregate": { "aggregate": [ - 716 + 958 ], "nodes": [ - 714 + 956 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 729, + 971, "[e_tournament_status_select_column!]" ], "distinct": [ @@ -10159,275 +14457,275 @@ export default { } ], "max": [ - 722 + 964 ], "min": [ - 723 + 965 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_bool_exp": { "_and": [ - 717 + 959 ], "_not": [ - 717 + 959 ], "_or": [ - 717 + 959 ], "description": [ - 65 + 66 ], "tournaments": [ - 3284 + 3553 ], "tournaments_aggregate": [ - 3275 + 3544 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_constraint": {}, "e_tournament_status_enum": {}, "e_tournament_status_enum_comparison_exp": { "_eq": [ - 719 + 961 ], "_in": [ - 719 + 961 ], "_is_null": [ 3 ], "_neq": [ - 719 + 961 ], "_nin": [ - 719 + 961 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_insert_input": { "description": [ - 63 + 64 ], "tournaments": [ - 3281 + 3550 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 714 + 956 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_obj_rel_insert_input": { "data": [ - 721 + 963 ], "on_conflict": [ - 726 + 968 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_on_conflict": { "constraint": [ - 718 + 960 ], "update_columns": [ - 733 + 975 ], "where": [ - 717 + 959 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_order_by": { "description": [ - 1736 + 2005 ], "tournaments_aggregate": [ - 3280 + 3549 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_select_column": {}, "e_tournament_status_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_stream_cursor_input": { "initial_value": [ - 732 + 974 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_tournament_status_update_column": {}, "e_tournament_status_updates": { "_set": [ - 730 + 972 ], "where": [ - 717 + 959 ], "__typename": [ - 63 + 64 ] }, "e_utility_types": { "description": [ - 63 + 64 ], "player_utilities": [ - 2529, + 2798, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "player_utilities_aggregate": [ - 2530, + 2799, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_aggregate": { "aggregate": [ - 737 + 979 ], "nodes": [ - 735 + 977 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 749, + 991, "[e_utility_types_select_column!]" ], "distinct": [ @@ -10436,264 +14734,264 @@ export default { } ], "max": [ - 743 + 985 ], "min": [ - 744 + 986 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_bool_exp": { "_and": [ - 738 + 980 ], "_not": [ - 738 + 980 ], "_or": [ - 738 + 980 ], "description": [ - 65 + 66 ], "player_utilities": [ - 2538 + 2807 ], "player_utilities_aggregate": [ - 2531 + 2800 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_constraint": {}, "e_utility_types_enum": {}, "e_utility_types_enum_comparison_exp": { "_eq": [ - 740 + 982 ], "_in": [ - 740 + 982 ], "_is_null": [ 3 ], "_neq": [ - 740 + 982 ], "_nin": [ - 740 + 982 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_insert_input": { "description": [ - 63 + 64 ], "player_utilities": [ - 2535 + 2804 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 735 + 977 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_on_conflict": { "constraint": [ - 739 + 981 ], "update_columns": [ - 753 + 995 ], "where": [ - 738 + 980 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_order_by": { "description": [ - 1736 + 2005 ], "player_utilities_aggregate": [ - 2534 + 2803 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_select_column": {}, "e_utility_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_stream_cursor_input": { "initial_value": [ - 752 + 994 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_utility_types_update_column": {}, "e_utility_types_updates": { "_set": [ - 750 + 992 ], "where": [ - 738 + 980 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types": { "description": [ - 63 + 64 ], "match_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_aggregate": { "aggregate": [ - 757 + 999 ], "nodes": [ - 755 + 997 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 769, + 1011, "[e_veto_pick_types_select_column!]" ], "distinct": [ @@ -10702,220 +15000,220 @@ export default { } ], "max": [ - 763 + 1005 ], "min": [ - 764 + 1006 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_bool_exp": { "_and": [ - 758 + 1000 ], "_not": [ - 758 + 1000 ], "_or": [ - 758 + 1000 ], "description": [ - 65 + 66 ], "match_veto_picks": [ - 1399 + 1641 ], "match_veto_picks_aggregate": [ - 1394 + 1636 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_constraint": {}, "e_veto_pick_types_enum": {}, "e_veto_pick_types_enum_comparison_exp": { "_eq": [ - 760 + 1002 ], "_in": [ - 760 + 1002 ], "_is_null": [ 3 ], "_neq": [ - 760 + 1002 ], "_nin": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_insert_input": { "description": [ - 63 + 64 ], "match_veto_picks": [ - 1398 + 1640 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 755 + 997 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_on_conflict": { "constraint": [ - 759 + 1001 ], "update_columns": [ - 773 + 1015 ], "where": [ - 758 + 1000 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_order_by": { "description": [ - 1736 + 2005 ], "match_veto_picks_aggregate": [ - 1397 + 1639 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_select_column": {}, "e_veto_pick_types_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_stream_cursor_input": { "initial_value": [ - 772 + 1014 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_veto_pick_types_update_column": {}, "e_veto_pick_types_updates": { "_set": [ - 770 + 1012 ], "where": [ - 758 + 1000 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_aggregate": { "aggregate": [ - 777 + 1019 ], "nodes": [ - 775 + 1017 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 789, + 1031, "[e_winning_reasons_select_column!]" ], "distinct": [ @@ -10924,250 +15222,250 @@ export default { } ], "max": [ - 783 + 1025 ], "min": [ - 784 + 1026 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_bool_exp": { "_and": [ - 778 + 1020 ], "_not": [ - 778 + 1020 ], "_or": [ - 778 + 1020 ], "description": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_constraint": {}, "e_winning_reasons_enum": {}, "e_winning_reasons_enum_comparison_exp": { "_eq": [ - 780 + 1022 ], "_in": [ - 780 + 1022 ], "_is_null": [ 3 ], "_neq": [ - 780 + 1022 ], "_nin": [ - 780 + 1022 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_insert_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_max_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_min_fields": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 775 + 1017 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_on_conflict": { "constraint": [ - 779 + 1021 ], "update_columns": [ - 793 + 1035 ], "where": [ - 778 + 1020 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_order_by": { "description": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_select_column": {}, "e_winning_reasons_set_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_stream_cursor_input": { "initial_value": [ - 792 + 1034 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_stream_cursor_value_input": { "description": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "e_winning_reasons_update_column": {}, "e_winning_reasons_updates": { "_set": [ - 790 + 1032 ], "where": [ - 778 + 1020 ], "__typename": [ - 63 + 64 ] }, "float8": {}, "float8_comparison_exp": { "_eq": [ - 795 + 1037 ], "_gt": [ - 795 + 1037 ], "_gte": [ - 795 + 1037 ], "_in": [ - 795 + 1037 ], "_is_null": [ 3 ], "_lt": [ - 795 + 1037 ], "_lte": [ - 795 + 1037 ], "_neq": [ - 795 + 1037 ], "_nin": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "friends": { "e_status": [ - 264 + 506 ], "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "status": [ - 269 + 511 ], "__typename": [ - 63 + 64 ] }, "friends_aggregate": { "aggregate": [ - 799 + 1041 ], "nodes": [ - 797 + 1039 ], "__typename": [ - 63 + 64 ] }, "friends_aggregate_fields": { "avg": [ - 800 + 1042 ], "count": [ - 34, + 35, { "columns": [ - 811, + 1053, "[friends_select_column!]" ], "distinct": [ @@ -11176,380 +15474,380 @@ export default { } ], "max": [ - 805 + 1047 ], "min": [ - 806 + 1048 ], "stddev": [ - 813 + 1055 ], "stddev_pop": [ - 814 + 1056 ], "stddev_samp": [ - 815 + 1057 ], "sum": [ - 818 + 1060 ], "var_pop": [ - 821 + 1063 ], "var_samp": [ - 822 + 1064 ], "variance": [ - 823 + 1065 ], "__typename": [ - 63 + 64 ] }, "friends_avg_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_bool_exp": { "_and": [ - 801 + 1043 ], "_not": [ - 801 + 1043 ], "_or": [ - 801 + 1043 ], "e_status": [ - 267 + 509 ], "other_player_steam_id": [ - 163 + 164 ], "player_steam_id": [ - 163 + 164 ], "status": [ - 270 + 512 ], "__typename": [ - 63 + 64 ] }, "friends_constraint": {}, "friends_inc_input": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "friends_insert_input": { "e_status": [ - 275 + 517 ], "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "status": [ - 269 + 511 ], "__typename": [ - 63 + 64 ] }, "friends_max_fields": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "friends_min_fields": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "friends_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 797 + 1039 ], "__typename": [ - 63 + 64 ] }, "friends_on_conflict": { "constraint": [ - 802 + 1044 ], "update_columns": [ - 819 + 1061 ], "where": [ - 801 + 1043 ], "__typename": [ - 63 + 64 ] }, "friends_order_by": { "e_status": [ - 277 + 519 ], "other_player_steam_id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "friends_pk_columns_input": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "friends_select_column": {}, "friends_set_input": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "status": [ - 269 + 511 ], "__typename": [ - 63 + 64 ] }, "friends_stddev_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_stddev_pop_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_stddev_samp_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_stream_cursor_input": { "initial_value": [ - 817 + 1059 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "friends_stream_cursor_value_input": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "status": [ - 269 + 511 ], "__typename": [ - 63 + 64 ] }, "friends_sum_fields": { "other_player_steam_id": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "friends_update_column": {}, "friends_updates": { "_inc": [ - 803 + 1045 ], "_set": [ - 812 + 1054 ], "where": [ - 801 + 1043 ], "__typename": [ - 63 + 64 ] }, "friends_var_pop_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_var_samp_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "friends_variance_fields": { "other_player_steam_id": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_frequency_info": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "cpu_governor_info": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "cs2_launch_options": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "cs2_video_settings": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "e_region": [ - 2659 + 2928 ], "e_status": [ - 305 + 547 ], "enabled": [ 3 ], "end_port_range": [ - 34 + 35 ], "gpu": [ 3 @@ -11558,10 +15856,10 @@ export default { 3 ], "gpu_info": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], @@ -11572,104 +15870,104 @@ export default { 3 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "lan_ip": [ - 942 + 1184 ], "node_ip": [ - 942 + 1184 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "pinned_version": [ - 875 + 1117 ], "plugin_supported": [ 3 ], "public_ip": [ - 942 + 1184 ], "region": [ - 63 + 64 ], "servers": [ - 2686, + 2955, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_aggregate": [ - 2687, + 2956, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "shader_bake_status_history": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "start_port_range": [ - 34 + 35 ], "status": [ - 310 + 552 ], "supports_cpu_pinning": [ 3 @@ -11678,106 +15976,106 @@ export default { 3 ], "token": [ - 63 + 64 ], "total_server_count": [ - 34 + 35 ], "update_status": [ - 63 + 64 ], "version": [ - 875 + 1117 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate": { "aggregate": [ - 830 + 1072 ], "nodes": [ - 824 + 1066 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_bool_exp": { "bool_and": [ - 827 + 1069 ], "bool_or": [ - 828 + 1070 ], "count": [ - 829 + 1071 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_bool_exp_bool_and": { "arguments": [ - 854 + 1096 ], "distinct": [ 3 ], "filter": [ - 836 + 1078 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_bool_exp_bool_or": { "arguments": [ - 855 + 1097 ], "distinct": [ 3 ], "filter": [ - 836 + 1078 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_bool_exp_count": { "arguments": [ - 853 + 1095 ], "distinct": [ 3 ], "filter": [ - 836 + 1078 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_fields": { "avg": [ - 834 + 1076 ], "count": [ - 34, + 35, { "columns": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "distinct": [ @@ -11786,256 +16084,256 @@ export default { } ], "max": [ - 843 + 1085 ], "min": [ - 845 + 1087 ], "stddev": [ - 857 + 1099 ], "stddev_pop": [ - 859 + 1101 ], "stddev_samp": [ - 861 + 1103 ], "sum": [ - 865 + 1107 ], "var_pop": [ - 869 + 1111 ], "var_samp": [ - 871 + 1113 ], "variance": [ - 873 + 1115 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_aggregate_order_by": { "avg": [ - 835 + 1077 ], "count": [ - 1736 + 2005 ], "max": [ - 844 + 1086 ], "min": [ - 846 + 1088 ], "stddev": [ - 858 + 1100 ], "stddev_pop": [ - 860 + 1102 ], "stddev_samp": [ - 862 + 1104 ], "sum": [ - 866 + 1108 ], "var_pop": [ - 870 + 1112 ], "var_samp": [ - 872 + 1114 ], "variance": [ - 874 + 1116 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_append_input": { "cpu_frequency_info": [ - 946 + 1188 ], "cpu_governor_info": [ - 946 + 1188 ], "cs2_launch_options": [ - 946 + 1188 ], "cs2_video_settings": [ - 946 + 1188 ], "gpu_info": [ - 946 + 1188 ], "shader_bake_status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_arr_rel_insert_input": { "data": [ - 842 + 1084 ], "on_conflict": [ - 849 + 1091 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_avg_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_avg_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_bool_exp": { "_and": [ - 836 + 1078 ], "_not": [ - 836 + 1078 ], "_or": [ - 836 + 1078 ], "available_server_count": [ - 35 + 36 ], "build_id": [ - 35 + 36 ], "cpu_cores_per_socket": [ - 35 + 36 ], "cpu_frequency_info": [ - 948 + 1190 ], "cpu_governor_info": [ - 948 + 1190 ], "cpu_sockets": [ - 35 + 36 ], "cpu_threads_per_core": [ - 35 + 36 ], "cs2_launch_options": [ - 948 + 1190 ], "cs2_video_settings": [ - 948 + 1190 ], "csgo_build_id": [ - 35 + 36 ], "demo_network_limiter": [ - 35 + 36 ], "disk_available_gb": [ - 35 + 36 ], "disk_used_percent": [ - 35 + 36 ], "e_region": [ - 2663 + 2932 ], "e_status": [ - 308 + 550 ], "enabled": [ 4 ], "end_port_range": [ - 35 + 36 ], "gpu": [ 4 @@ -12044,7 +16342,7 @@ export default { 4 ], "gpu_info": [ - 948 + 1190 ], "gpu_rendering_enabled": [ 4 @@ -12053,61 +16351,61 @@ export default { 4 ], "id": [ - 65 + 66 ], "label": [ - 65 + 66 ], "lan_ip": [ - 943 + 1185 ], "node_ip": [ - 943 + 1185 ], "offline_at": [ - 2923 + 3192 ], "pin_build_id": [ - 35 + 36 ], "pin_plugin_version": [ - 65 + 66 ], "pinned_version": [ - 880 + 1122 ], "plugin_supported": [ 4 ], "public_ip": [ - 943 + 1185 ], "region": [ - 65 + 66 ], "servers": [ - 2697 + 2966 ], "servers_aggregate": [ - 2688 + 2957 ], "shader_bake_progress": [ - 1735 + 2004 ], "shader_bake_progress_stage": [ - 65 + 66 ], "shader_bake_status": [ - 65 + 66 ], "shader_bake_status_history": [ - 948 + 1190 ], "start_port_range": [ - 35 + 36 ], "status": [ - 311 + 553 ], "supports_cpu_pinning": [ 4 @@ -12116,180 +16414,180 @@ export default { 4 ], "token": [ - 65 + 66 ], "total_server_count": [ - 35 + 36 ], "update_status": [ - 65 + 66 ], "version": [ - 880 + 1122 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_constraint": {}, "game_server_nodes_delete_at_path_input": { "cpu_frequency_info": [ - 63 + 64 ], "cpu_governor_info": [ - 63 + 64 ], "cs2_launch_options": [ - 63 + 64 ], "cs2_video_settings": [ - 63 + 64 ], "gpu_info": [ - 63 + 64 ], "shader_bake_status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_delete_elem_input": { "cpu_frequency_info": [ - 34 + 35 ], "cpu_governor_info": [ - 34 + 35 ], "cs2_launch_options": [ - 34 + 35 ], "cs2_video_settings": [ - 34 + 35 ], "gpu_info": [ - 34 + 35 ], "shader_bake_status_history": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_delete_key_input": { "cpu_frequency_info": [ - 63 + 64 ], "cpu_governor_info": [ - 63 + 64 ], "cs2_launch_options": [ - 63 + 64 ], "cs2_video_settings": [ - 63 + 64 ], "gpu_info": [ - 63 + 64 ], "shader_bake_status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_inc_input": { "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "end_port_range": [ - 34 + 35 ], "pin_build_id": [ - 34 + 35 ], "shader_bake_progress": [ - 1734 + 2003 ], "start_port_range": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_insert_input": { "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_frequency_info": [ - 946 + 1188 ], "cpu_governor_info": [ - 946 + 1188 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "cs2_launch_options": [ - 946 + 1188 ], "cs2_video_settings": [ - 946 + 1188 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "e_region": [ - 2669 + 2938 ], "e_status": [ - 316 + 558 ], "enabled": [ 3 ], "end_port_range": [ - 34 + 35 ], "gpu": [ 3 @@ -12298,7 +16596,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1188 ], "gpu_rendering_enabled": [ 3 @@ -12307,55 +16605,55 @@ export default { 3 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "lan_ip": [ - 942 + 1184 ], "node_ip": [ - 942 + 1184 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "pinned_version": [ - 890 + 1132 ], "public_ip": [ - 942 + 1184 ], "region": [ - 63 + 64 ], "servers": [ - 2694 + 2963 ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "shader_bake_status_history": [ - 946 + 1188 ], "start_port_range": [ - 34 + 35 ], "status": [ - 310 + 552 ], "supports_cpu_pinning": [ 3 @@ -12364,510 +16662,510 @@ export default { 3 ], "token": [ - 63 + 64 ], "update_status": [ - 63 + 64 ], "version": [ - 890 + 1132 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_max_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "end_port_range": [ - 34 + 35 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "region": [ - 63 + 64 ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "start_port_range": [ - 34 + 35 ], "token": [ - 63 + 64 ], "total_server_count": [ - 34 + 35 ], "update_status": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_max_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "pin_plugin_version": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "shader_bake_progress_stage": [ - 1736 + 2005 ], "shader_bake_status": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "token": [ - 1736 + 2005 ], "update_status": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_min_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "end_port_range": [ - 34 + 35 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "region": [ - 63 + 64 ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "start_port_range": [ - 34 + 35 ], "token": [ - 63 + 64 ], "total_server_count": [ - 34 + 35 ], "update_status": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_min_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "pin_plugin_version": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "shader_bake_progress_stage": [ - 1736 + 2005 ], "shader_bake_status": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "token": [ - 1736 + 2005 ], "update_status": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 824 + 1066 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_obj_rel_insert_input": { "data": [ - 842 + 1084 ], "on_conflict": [ - 849 + 1091 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_on_conflict": { "constraint": [ - 837 + 1079 ], "update_columns": [ - 867 + 1109 ], "where": [ - 836 + 1078 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_order_by": { "available_server_count": [ - 1736 + 2005 ], "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_frequency_info": [ - 1736 + 2005 ], "cpu_governor_info": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "cs2_launch_options": [ - 1736 + 2005 ], "cs2_video_settings": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "e_region": [ - 2671 + 2940 ], "e_status": [ - 318 + 560 ], "enabled": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "gpu": [ - 1736 + 2005 ], "gpu_demos_enabled": [ - 1736 + 2005 ], "gpu_info": [ - 1736 + 2005 ], "gpu_rendering_enabled": [ - 1736 + 2005 ], "gpu_streaming_enabled": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "lan_ip": [ - 1736 + 2005 ], "node_ip": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "pin_plugin_version": [ - 1736 + 2005 ], "pinned_version": [ - 892 + 1134 ], "plugin_supported": [ - 1736 + 2005 ], "public_ip": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "servers_aggregate": [ - 2693 + 2962 ], "shader_bake_progress": [ - 1736 + 2005 ], "shader_bake_progress_stage": [ - 1736 + 2005 ], "shader_bake_status": [ - 1736 + 2005 ], "shader_bake_status_history": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "supports_cpu_pinning": [ - 1736 + 2005 ], "supports_low_latency": [ - 1736 + 2005 ], "token": [ - 1736 + 2005 ], "total_server_count": [ - 1736 + 2005 ], "update_status": [ - 1736 + 2005 ], "version": [ - 892 + 1134 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_pk_columns_input": { "id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_prepend_input": { "cpu_frequency_info": [ - 946 + 1188 ], "cpu_governor_info": [ - 946 + 1188 ], "cs2_launch_options": [ - 946 + 1188 ], "cs2_video_settings": [ - 946 + 1188 ], "gpu_info": [ - 946 + 1188 ], "shader_bake_status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_select_column": {}, @@ -12875,46 +17173,46 @@ export default { "game_server_nodes_select_column_game_server_nodes_aggregate_bool_exp_bool_or_arguments_columns": {}, "game_server_nodes_set_input": { "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_frequency_info": [ - 946 + 1188 ], "cpu_governor_info": [ - 946 + 1188 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "cs2_launch_options": [ - 946 + 1188 ], "cs2_video_settings": [ - 946 + 1188 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "enabled": [ 3 ], "end_port_range": [ - 34 + 35 ], "gpu": [ 3 @@ -12923,7 +17221,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1188 ], "gpu_rendering_enabled": [ 3 @@ -12932,49 +17230,49 @@ export default { 3 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "lan_ip": [ - 942 + 1184 ], "node_ip": [ - 942 + 1184 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "public_ip": [ - 942 + 1184 ], "region": [ - 63 + 64 ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "shader_bake_status_history": [ - 946 + 1188 ], "start_port_range": [ - 34 + 35 ], "status": [ - 310 + 552 ], "supports_cpu_pinning": [ 3 @@ -12983,332 +17281,332 @@ export default { 3 ], "token": [ - 63 + 64 ], "update_status": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_pop_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_pop_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_samp_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stddev_samp_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stream_cursor_input": { "initial_value": [ - 864 + 1106 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_stream_cursor_value_input": { "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_frequency_info": [ - 946 + 1188 ], "cpu_governor_info": [ - 946 + 1188 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "cs2_launch_options": [ - 946 + 1188 ], "cs2_video_settings": [ - 946 + 1188 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "enabled": [ 3 ], "end_port_range": [ - 34 + 35 ], "gpu": [ 3 @@ -13317,7 +17615,7 @@ export default { 3 ], "gpu_info": [ - 946 + 1188 ], "gpu_rendering_enabled": [ 3 @@ -13326,49 +17624,49 @@ export default { 3 ], "id": [ - 63 + 64 ], "label": [ - 63 + 64 ], "lan_ip": [ - 942 + 1184 ], "node_ip": [ - 942 + 1184 ], "offline_at": [ - 2922 + 3191 ], "pin_build_id": [ - 34 + 35 ], "pin_plugin_version": [ - 63 + 64 ], "public_ip": [ - 942 + 1184 ], "region": [ - 63 + 64 ], "shader_bake_progress": [ - 1734 + 2003 ], "shader_bake_progress_stage": [ - 63 + 64 ], "shader_bake_status": [ - 63 + 64 ], "shader_bake_status_history": [ - 946 + 1188 ], "start_port_range": [ - 34 + 35 ], "status": [ - 310 + 552 ], "supports_cpu_pinning": [ 3 @@ -13377,400 +17675,400 @@ export default { 3 ], "token": [ - 63 + 64 ], "update_status": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_sum_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 34 + 35 ], "cpu_cores_per_socket": [ - 34 + 35 ], "cpu_sockets": [ - 34 + 35 ], "cpu_threads_per_core": [ - 34 + 35 ], "csgo_build_id": [ - 34 + 35 ], "demo_network_limiter": [ - 34 + 35 ], "disk_available_gb": [ - 34 + 35 ], "disk_used_percent": [ - 34 + 35 ], "end_port_range": [ - 34 + 35 ], "pin_build_id": [ - 34 + 35 ], "shader_bake_progress": [ - 1734 + 2003 ], "start_port_range": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_sum_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_update_column": {}, "game_server_nodes_updates": { "_append": [ - 832 + 1074 ], "_delete_at_path": [ - 838 + 1080 ], "_delete_elem": [ - 839 + 1081 ], "_delete_key": [ - 840 + 1082 ], "_inc": [ - 841 + 1083 ], "_prepend": [ - 852 + 1094 ], "_set": [ - 856 + 1098 ], "where": [ - 836 + 1078 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_var_pop_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_var_pop_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_var_samp_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_var_samp_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_variance_fields": { "available_server_count": [ - 34 + 35 ], "build_id": [ - 25 + 26 ], "cpu_cores_per_socket": [ - 25 + 26 ], "cpu_sockets": [ - 25 + 26 ], "cpu_threads_per_core": [ - 25 + 26 ], "csgo_build_id": [ - 25 + 26 ], "demo_network_limiter": [ - 25 + 26 ], "disk_available_gb": [ - 25 + 26 ], "disk_used_percent": [ - 25 + 26 ], "end_port_range": [ - 25 + 26 ], "pin_build_id": [ - 25 + 26 ], "shader_bake_progress": [ - 25 + 26 ], "start_port_range": [ - 25 + 26 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_server_nodes_variance_order_by": { "build_id": [ - 1736 + 2005 ], "cpu_cores_per_socket": [ - 1736 + 2005 ], "cpu_sockets": [ - 1736 + 2005 ], "cpu_threads_per_core": [ - 1736 + 2005 ], "csgo_build_id": [ - 1736 + 2005 ], "demo_network_limiter": [ - 1736 + 2005 ], "disk_available_gb": [ - 1736 + 2005 ], "disk_used_percent": [ - 1736 + 2005 ], "end_port_range": [ - 1736 + 2005 ], "pin_build_id": [ - 1736 + 2005 ], "shader_bake_progress": [ - 1736 + 2005 ], "start_port_range": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_versions": { "build_id": [ - 34 + 35 ], "current": [ 3 @@ -13779,46 +18077,46 @@ export default { 3 ], "description": [ - 63 + 64 ], "downloads": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_aggregate": { "aggregate": [ - 877 + 1119 ], "nodes": [ - 875 + 1117 ], "__typename": [ - 63 + 64 ] }, "game_versions_aggregate_fields": { "avg": [ - 879 + 1121 ], "count": [ - 34, + 35, { "columns": [ - 895, + 1137, "[game_versions_select_column!]" ], "distinct": [ @@ -13827,64 +18125,64 @@ export default { } ], "max": [ - 887 + 1129 ], "min": [ - 888 + 1130 ], "stddev": [ - 897 + 1139 ], "stddev_pop": [ - 898 + 1140 ], "stddev_samp": [ - 899 + 1141 ], "sum": [ - 902 + 1144 ], "var_pop": [ - 905 + 1147 ], "var_samp": [ - 906 + 1148 ], "variance": [ - 907 + 1149 ], "__typename": [ - 63 + 64 ] }, "game_versions_append_input": { "downloads": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "game_versions_avg_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_bool_exp": { "_and": [ - 880 + 1122 ], "_not": [ - 880 + 1122 ], "_or": [ - 880 + 1122 ], "build_id": [ - 35 + 36 ], "current": [ 4 @@ -13893,57 +18191,57 @@ export default { 4 ], "description": [ - 65 + 66 ], "downloads": [ - 948 + 1190 ], "updated_at": [ - 2923 + 3192 ], "version": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "game_versions_constraint": {}, "game_versions_delete_at_path_input": { "downloads": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_delete_elem_input": { "downloads": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_versions_delete_key_input": { "downloads": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_inc_input": { "build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_versions_insert_input": { "build_id": [ - 34 + 35 ], "current": [ 3 @@ -13952,137 +18250,137 @@ export default { 3 ], "description": [ - 63 + 64 ], "downloads": [ - 946 + 1188 ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_max_fields": { "build_id": [ - 34 + 35 ], "description": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_min_fields": { "build_id": [ - 34 + 35 ], "description": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 875 + 1117 ], "__typename": [ - 63 + 64 ] }, "game_versions_obj_rel_insert_input": { "data": [ - 886 + 1128 ], "on_conflict": [ - 891 + 1133 ], "__typename": [ - 63 + 64 ] }, "game_versions_on_conflict": { "constraint": [ - 881 + 1123 ], "update_columns": [ - 903 + 1145 ], "where": [ - 880 + 1122 ], "__typename": [ - 63 + 64 ] }, "game_versions_order_by": { "build_id": [ - 1736 + 2005 ], "current": [ - 1736 + 2005 ], "cvars": [ - 1736 + 2005 ], "description": [ - 1736 + 2005 ], "downloads": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "version": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "game_versions_pk_columns_input": { "build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_versions_prepend_input": { "downloads": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "game_versions_select_column": {}, "game_versions_set_input": { "build_id": [ - 34 + 35 ], "current": [ 3 @@ -14091,59 +18389,59 @@ export default { 3 ], "description": [ - 63 + 64 ], "downloads": [ - 946 + 1188 ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_stddev_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_stddev_pop_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_stddev_samp_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_stream_cursor_input": { "initial_value": [ - 901 + 1143 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "game_versions_stream_cursor_value_input": { "build_id": [ - 34 + 35 ], "current": [ 3 @@ -14152,134 +18450,134 @@ export default { 3 ], "description": [ - 63 + 64 ], "downloads": [ - 946 + 1188 ], "updated_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "game_versions_sum_fields": { "build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "game_versions_update_column": {}, "game_versions_updates": { "_append": [ - 878 + 1120 ], "_delete_at_path": [ - 882 + 1124 ], "_delete_elem": [ - 883 + 1125 ], "_delete_key": [ - 884 + 1126 ], "_inc": [ - 885 + 1127 ], "_prepend": [ - 894 + 1136 ], "_set": [ - 896 + 1138 ], "where": [ - 880 + 1122 ], "__typename": [ - 63 + 64 ] }, "game_versions_var_pop_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_var_samp_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "game_versions_variance_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "game_version": [ - 875 + 1117 ], "id": [ - 3319 + 3588 ], "results": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_aggregate": { "aggregate": [ - 910 + 1152 ], "nodes": [ - 908 + 1150 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_aggregate_fields": { "avg": [ - 912 + 1154 ], "count": [ - 34, + 35, { "columns": [ - 927, + 1169, "[gamedata_signature_validations_select_column!]" ], "distinct": [ @@ -14288,611 +18586,611 @@ export default { } ], "max": [ - 920 + 1162 ], "min": [ - 921 + 1163 ], "stddev": [ - 929 + 1171 ], "stddev_pop": [ - 930 + 1172 ], "stddev_samp": [ - 931 + 1173 ], "sum": [ - 934 + 1176 ], "var_pop": [ - 937 + 1179 ], "var_samp": [ - 938 + 1180 ], "variance": [ - 939 + 1181 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_append_input": { "results": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_avg_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_bool_exp": { "_and": [ - 913 + 1155 ], "_not": [ - 913 + 1155 ], "_or": [ - 913 + 1155 ], "branch": [ - 65 + 66 ], "build_id": [ - 35 + 36 ], "game_version": [ - 880 + 1122 ], "id": [ - 3320 + 3589 ], "results": [ - 948 + 1190 ], "status": [ - 65 + 66 ], "validated_at": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_constraint": {}, "gamedata_signature_validations_delete_at_path_input": { "results": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_delete_elem_input": { "results": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_delete_key_input": { "results": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_inc_input": { "build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_insert_input": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "game_version": [ - 890 + 1132 ], "id": [ - 3319 + 3588 ], "results": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_max_fields": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_min_fields": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 908 + 1150 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_on_conflict": { "constraint": [ - 914 + 1156 ], "update_columns": [ - 935 + 1177 ], "where": [ - 913 + 1155 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_order_by": { "branch": [ - 1736 + 2005 ], "build_id": [ - 1736 + 2005 ], "game_version": [ - 892 + 1134 ], "id": [ - 1736 + 2005 ], "results": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "validated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_prepend_input": { "results": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_select_column": {}, "gamedata_signature_validations_set_input": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "results": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_stddev_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_stddev_pop_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_stddev_samp_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_stream_cursor_input": { "initial_value": [ - 933 + 1175 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_stream_cursor_value_input": { "branch": [ - 63 + 64 ], "build_id": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "results": [ - 946 + 1188 ], "status": [ - 63 + 64 ], "validated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_sum_fields": { "build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_update_column": {}, "gamedata_signature_validations_updates": { "_append": [ - 911 + 1153 ], "_delete_at_path": [ - 915 + 1157 ], "_delete_elem": [ - 916 + 1158 ], "_delete_key": [ - 917 + 1159 ], "_inc": [ - 918 + 1160 ], "_prepend": [ - 926 + 1168 ], "_set": [ - 928 + 1170 ], "where": [ - 913 + 1155 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_var_pop_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_var_samp_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "gamedata_signature_validations_variance_fields": { "build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "get_leaderboard_args": { "_category": [ - 63 + 64 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 63 + 64 ], "_role": [ - 63 + 64 ], "_window_days": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "get_player_leaderboard_rank_args": { "_category": [ - 63 + 64 ], "_exclude_tournaments": [ 3 ], "_match_type": [ - 63 + 64 ], "_player_steam_id": [ - 63 + 64 ], "_window_days": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "inet": {}, "inet_comparison_exp": { "_eq": [ - 942 + 1184 ], "_gt": [ - 942 + 1184 ], "_gte": [ - 942 + 1184 ], "_in": [ - 942 + 1184 ], "_is_null": [ 3 ], "_lt": [ - 942 + 1184 ], "_lte": [ - 942 + 1184 ], "_neq": [ - 942 + 1184 ], "_nin": [ - 942 + 1184 ], "__typename": [ - 63 + 64 ] }, "json": {}, "json_comparison_exp": { "_eq": [ - 944 + 1186 ], "_gt": [ - 944 + 1186 ], "_gte": [ - 944 + 1186 ], "_in": [ - 944 + 1186 ], "_is_null": [ 3 ], "_lt": [ - 944 + 1186 ], "_lte": [ - 944 + 1186 ], "_neq": [ - 944 + 1186 ], "_nin": [ - 944 + 1186 ], "__typename": [ - 63 + 64 ] }, "jsonb": {}, "jsonb_cast_exp": { "String": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "jsonb_comparison_exp": { "_cast": [ - 947 + 1189 ], "_contained_in": [ - 946 + 1188 ], "_contains": [ - 946 + 1188 ], "_eq": [ - 946 + 1188 ], "_gt": [ - 946 + 1188 ], "_gte": [ - 946 + 1188 ], "_has_key": [ - 63 + 64 ], "_has_keys_all": [ - 63 + 64 ], "_has_keys_any": [ - 63 + 64 ], "_in": [ - 946 + 1188 ], "_is_null": [ 3 ], "_lt": [ - 946 + 1188 ], "_lte": [ - 946 + 1188 ], "_neq": [ - 946 + 1188 ], "_nin": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_aggregate": { "aggregate": [ - 951 + 1193 ], "nodes": [ - 949 + 1191 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_aggregate_fields": { "avg": [ - 952 + 1194 ], "count": [ - 34, + 35, { "columns": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "distinct": [ @@ -14901,516 +19199,516 @@ export default { } ], "max": [ - 956 + 1198 ], "min": [ - 957 + 1199 ], "stddev": [ - 962 + 1204 ], "stddev_pop": [ - 963 + 1205 ], "stddev_samp": [ - 964 + 1206 ], "sum": [ - 967 + 1209 ], "var_pop": [ - 969 + 1211 ], "var_samp": [ - 970 + 1212 ], "variance": [ - 971 + 1213 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_avg_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_bool_exp": { "_and": [ - 953 + 1195 ], "_not": [ - 953 + 1195 ], "_or": [ - 953 + 1195 ], "matches_played": [ - 35 + 36 ], "player_avatar_url": [ - 65 + 66 ], "player_country": [ - 65 + 66 ], "player_name": [ - 65 + 66 ], "player_steam_id": [ - 65 + 66 ], "secondary_value": [ - 796 + 1038 ], "tertiary_value": [ - 796 + 1038 ], "value": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_inc_input": { "matches_played": [ - 34 + 35 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_insert_input": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_max_fields": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_min_fields": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 949 + 1191 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_order_by": { "matches_played": [ - 1736 + 2005 ], "player_avatar_url": [ - 1736 + 2005 ], "player_country": [ - 1736 + 2005 ], "player_name": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "secondary_value": [ - 1736 + 2005 ], "tertiary_value": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_select_column": {}, "leaderboard_entries_set_input": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_stddev_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_stddev_pop_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_stddev_samp_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_stream_cursor_input": { "initial_value": [ - 966 + 1208 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_stream_cursor_value_input": { "matches_played": [ - 34 + 35 ], "player_avatar_url": [ - 63 + 64 ], "player_country": [ - 63 + 64 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 63 + 64 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_sum_fields": { "matches_played": [ - 34 + 35 ], "secondary_value": [ - 795 + 1037 ], "tertiary_value": [ - 795 + 1037 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_updates": { "_inc": [ - 954 + 1196 ], "_set": [ - 961 + 1203 ], "where": [ - 953 + 1195 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_var_pop_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_var_samp_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "leaderboard_entries_variance_fields": { "matches_played": [ - 25 + 26 ], "secondary_value": [ - 25 + 26 ], "tertiary_value": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobbies": { "access": [ - 331 + 573 ], "created_at": [ - 2922 + 3191 ], "e_lobby_access": [ - 326 + 568 ], "id": [ - 3319 + 3588 ], "players": [ - 991, + 1233, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "players_aggregate": [ - 992, + 1234, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "__typename": [ - 63 + 64 ] }, "lobbies_aggregate": { "aggregate": [ - 974 + 1216 ], "nodes": [ - 972 + 1214 ], "__typename": [ - 63 + 64 ] }, "lobbies_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 985, + 1227, "[lobbies_select_column!]" ], "distinct": [ @@ -15419,204 +19717,204 @@ export default { } ], "max": [ - 978 + 1220 ], "min": [ - 979 + 1221 ], "__typename": [ - 63 + 64 ] }, "lobbies_bool_exp": { "_and": [ - 975 + 1217 ], "_not": [ - 975 + 1217 ], "_or": [ - 975 + 1217 ], "access": [ - 332 + 574 ], "created_at": [ - 2923 + 3192 ], "e_lobby_access": [ - 329 + 571 ], "id": [ - 3320 + 3589 ], "players": [ - 1002 + 1244 ], "players_aggregate": [ - 993 + 1235 ], "__typename": [ - 63 + 64 ] }, "lobbies_constraint": {}, "lobbies_insert_input": { "access": [ - 331 + 573 ], "created_at": [ - 2922 + 3191 ], "e_lobby_access": [ - 337 + 579 ], "id": [ - 3319 + 3588 ], "players": [ - 999 + 1241 ], "__typename": [ - 63 + 64 ] }, "lobbies_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "lobbies_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "lobbies_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 972 + 1214 ], "__typename": [ - 63 + 64 ] }, "lobbies_obj_rel_insert_input": { "data": [ - 977 + 1219 ], "on_conflict": [ - 982 + 1224 ], "__typename": [ - 63 + 64 ] }, "lobbies_on_conflict": { "constraint": [ - 976 + 1218 ], "update_columns": [ - 989 + 1231 ], "where": [ - 975 + 1217 ], "__typename": [ - 63 + 64 ] }, "lobbies_order_by": { "access": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "e_lobby_access": [ - 339 + 581 ], "id": [ - 1736 + 2005 ], "players_aggregate": [ - 998 + 1240 ], "__typename": [ - 63 + 64 ] }, "lobbies_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "lobbies_select_column": {}, "lobbies_set_input": { "access": [ - 331 + 573 ], "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "lobbies_stream_cursor_input": { "initial_value": [ - 988 + 1230 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "lobbies_stream_cursor_value_input": { "access": [ - 331 + 573 ], "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "lobbies_update_column": {}, "lobbies_updates": { "_set": [ - 986 + 1228 ], "where": [ - 975 + 1217 ], "__typename": [ - 63 + 64 ] }, "lobby_players": { @@ -15624,112 +19922,112 @@ export default { 3 ], "invited_by_steam_id": [ - 162 + 163 ], "lobby": [ - 972 + 1214 ], "lobby_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "status": [ - 352 + 594 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate": { "aggregate": [ - 997 + 1239 ], "nodes": [ - 991 + 1233 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_bool_exp": { "bool_and": [ - 994 + 1236 ], "bool_or": [ - 995 + 1237 ], "count": [ - 996 + 1238 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1015 + 1257 ], "distinct": [ 3 ], "filter": [ - 1002 + 1244 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1016 + 1258 ], "distinct": [ 3 ], "filter": [ - 1002 + 1244 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_bool_exp_count": { "arguments": [ - 1014 + 1256 ], "distinct": [ 3 ], "filter": [ - 1002 + 1244 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_fields": { "avg": [ - 1000 + 1242 ], "count": [ - 34, + 35, { "columns": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "distinct": [ @@ -15738,152 +20036,152 @@ export default { } ], "max": [ - 1006 + 1248 ], "min": [ - 1008 + 1250 ], "stddev": [ - 1018 + 1260 ], "stddev_pop": [ - 1020 + 1262 ], "stddev_samp": [ - 1022 + 1264 ], "sum": [ - 1026 + 1268 ], "var_pop": [ - 1030 + 1272 ], "var_samp": [ - 1032 + 1274 ], "variance": [ - 1034 + 1276 ], "__typename": [ - 63 + 64 ] }, "lobby_players_aggregate_order_by": { "avg": [ - 1001 + 1243 ], "count": [ - 1736 + 2005 ], "max": [ - 1007 + 1249 ], "min": [ - 1009 + 1251 ], "stddev": [ - 1019 + 1261 ], "stddev_pop": [ - 1021 + 1263 ], "stddev_samp": [ - 1023 + 1265 ], "sum": [ - 1027 + 1269 ], "var_pop": [ - 1031 + 1273 ], "var_samp": [ - 1033 + 1275 ], "variance": [ - 1035 + 1277 ], "__typename": [ - 63 + 64 ] }, "lobby_players_arr_rel_insert_input": { "data": [ - 1005 + 1247 ], "on_conflict": [ - 1011 + 1253 ], "__typename": [ - 63 + 64 ] }, "lobby_players_avg_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_avg_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_bool_exp": { "_and": [ - 1002 + 1244 ], "_not": [ - 1002 + 1244 ], "_or": [ - 1002 + 1244 ], "captain": [ 4 ], "invited_by_steam_id": [ - 163 + 164 ], "lobby": [ - 975 + 1217 ], "lobby_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "status": [ - 353 + 595 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "lobby_players_constraint": {}, "lobby_players_inc_input": { "invited_by_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_insert_input": { @@ -15891,143 +20189,143 @@ export default { 3 ], "invited_by_steam_id": [ - 162 + 163 ], "lobby": [ - 981 + 1223 ], "lobby_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "status": [ - 352 + 594 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_max_fields": { "invited_by_steam_id": [ - 162 + 163 ], "lobby_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_max_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "lobby_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_min_fields": { "invited_by_steam_id": [ - 162 + 163 ], "lobby_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_min_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "lobby_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 991 + 1233 ], "__typename": [ - 63 + 64 ] }, "lobby_players_on_conflict": { "constraint": [ - 1003 + 1245 ], "update_columns": [ - 1028 + 1270 ], "where": [ - 1002 + 1244 ], "__typename": [ - 63 + 64 ] }, "lobby_players_order_by": { "captain": [ - 1736 + 2005 ], "invited_by_steam_id": [ - 1736 + 2005 ], "lobby": [ - 983 + 1225 ], "lobby_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "status": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_pk_columns_input": { "lobby_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_select_column": {}, @@ -16038,96 +20336,96 @@ export default { 3 ], "invited_by_steam_id": [ - 162 + 163 ], "lobby_id": [ - 3319 + 3588 ], "status": [ - 352 + 594 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_pop_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_pop_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_samp_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stddev_samp_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stream_cursor_input": { "initial_value": [ - 1025 + 1267 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "lobby_players_stream_cursor_value_input": { @@ -16135,175 +20433,175 @@ export default { 3 ], "invited_by_steam_id": [ - 162 + 163 ], "lobby_id": [ - 3319 + 3588 ], "status": [ - 352 + 594 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_sum_fields": { "invited_by_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "lobby_players_sum_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_update_column": {}, "lobby_players_updates": { "_inc": [ - 1004 + 1246 ], "_set": [ - 1017 + 1259 ], "where": [ - 1002 + 1244 ], "__typename": [ - 63 + 64 ] }, "lobby_players_var_pop_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_var_pop_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_var_samp_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_var_samp_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "lobby_players_variance_fields": { "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "lobby_players_variance_order_by": { "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "map_pools": { "e_type": [ - 367 + 609 ], "enabled": [ 3 ], "id": [ - 3319 + 3588 ], "maps": [ - 3825, + 4094, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], "maps_aggregate": [ - 3826, + 4095, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], @@ -16311,29 +20609,29 @@ export default { 3 ], "type": [ - 372 + 614 ], "__typename": [ - 63 + 64 ] }, "map_pools_aggregate": { "aggregate": [ - 1038 + 1280 ], "nodes": [ - 1036 + 1278 ], "__typename": [ - 63 + 64 ] }, "map_pools_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 1049, + 1291, "[map_pools_select_column!]" ], "distinct": [ @@ -16342,155 +20640,155 @@ export default { } ], "max": [ - 1042 + 1284 ], "min": [ - 1043 + 1285 ], "__typename": [ - 63 + 64 ] }, "map_pools_bool_exp": { "_and": [ - 1039 + 1281 ], "_not": [ - 1039 + 1281 ], "_or": [ - 1039 + 1281 ], "e_type": [ - 370 + 612 ], "enabled": [ 4 ], "id": [ - 3320 + 3589 ], "maps": [ - 3834 + 4103 ], "maps_aggregate": [ - 3827 + 4096 ], "seed": [ 4 ], "type": [ - 373 + 615 ], "__typename": [ - 63 + 64 ] }, "map_pools_constraint": {}, "map_pools_insert_input": { "e_type": [ - 378 + 620 ], "enabled": [ 3 ], "id": [ - 3319 + 3588 ], "maps": [ - 3833 + 4102 ], "seed": [ 3 ], "type": [ - 372 + 614 ], "__typename": [ - 63 + 64 ] }, "map_pools_max_fields": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "map_pools_min_fields": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "map_pools_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1036 + 1278 ], "__typename": [ - 63 + 64 ] }, "map_pools_obj_rel_insert_input": { "data": [ - 1041 + 1283 ], "on_conflict": [ - 1046 + 1288 ], "__typename": [ - 63 + 64 ] }, "map_pools_on_conflict": { "constraint": [ - 1040 + 1282 ], "update_columns": [ - 1053 + 1295 ], "where": [ - 1039 + 1281 ], "__typename": [ - 63 + 64 ] }, "map_pools_order_by": { "e_type": [ - 380 + 622 ], "enabled": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "maps_aggregate": [ - 3832 + 4101 ], "seed": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "map_pools_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "map_pools_select_column": {}, @@ -16499,27 +20797,27 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "seed": [ 3 ], "type": [ - 372 + 614 ], "__typename": [ - 63 + 64 ] }, "map_pools_stream_cursor_input": { "initial_value": [ - 1052 + 1294 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "map_pools_stream_cursor_value_input": { @@ -16527,28 +20825,28 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "seed": [ 3 ], "type": [ - 372 + 614 ], "__typename": [ - 63 + 64 ] }, "map_pools_update_column": {}, "map_pools_updates": { "_set": [ - 1050 + 1292 ], "where": [ - 1039 + 1281 ], "__typename": [ - 63 + 64 ] }, "maps": { @@ -16556,206 +20854,206 @@ export default { 3 ], "e_match_type": [ - 470 + 712 ], "enabled": [ 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "match_maps": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_maps_aggregate": [ - 1417, + 1659, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 475 + 717 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate": { "aggregate": [ - 1061 + 1303 ], "nodes": [ - 1055 + 1297 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_bool_exp": { "bool_and": [ - 1058 + 1300 ], "bool_or": [ - 1059 + 1301 ], "count": [ - 1060 + 1302 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_bool_exp_bool_and": { "arguments": [ - 1077 + 1319 ], "distinct": [ 3 ], "filter": [ - 1064 + 1306 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_bool_exp_bool_or": { "arguments": [ - 1078 + 1320 ], "distinct": [ 3 ], "filter": [ - 1064 + 1306 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_bool_exp_count": { "arguments": [ - 1076 + 1318 ], "distinct": [ 3 ], "filter": [ - 1064 + 1306 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 1076, + 1318, "[maps_select_column!]" ], "distinct": [ @@ -16764,94 +21062,94 @@ export default { } ], "max": [ - 1067 + 1309 ], "min": [ - 1069 + 1311 ], "__typename": [ - 63 + 64 ] }, "maps_aggregate_order_by": { "count": [ - 1736 + 2005 ], "max": [ - 1068 + 1310 ], "min": [ - 1070 + 1312 ], "__typename": [ - 63 + 64 ] }, "maps_arr_rel_insert_input": { "data": [ - 1066 + 1308 ], "on_conflict": [ - 1073 + 1315 ], "__typename": [ - 63 + 64 ] }, "maps_bool_exp": { "_and": [ - 1064 + 1306 ], "_not": [ - 1064 + 1306 ], "_or": [ - 1064 + 1306 ], "active_pool": [ 4 ], "e_match_type": [ - 473 + 715 ], "enabled": [ 4 ], "id": [ - 3320 + 3589 ], "label": [ - 65 + 66 ], "match_maps": [ - 1425 + 1667 ], "match_maps_aggregate": [ - 1418 + 1660 ], "match_veto_picks": [ - 1399 + 1641 ], "match_veto_picks_aggregate": [ - 1394 + 1636 ], "name": [ - 65 + 66 ], "patch": [ - 65 + 66 ], "poster": [ - 65 + 66 ], "type": [ - 476 + 718 ], "workshop_map_id": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "maps_constraint": {}, @@ -16860,217 +21158,217 @@ export default { 3 ], "e_match_type": [ - 481 + 723 ], "enabled": [ 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "match_maps": [ - 1422 + 1664 ], "match_veto_picks": [ - 1398 + 1640 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 475 + 717 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_max_fields": { "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_max_order_by": { "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "maps_min_fields": { "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_min_order_by": { "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "maps_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1055 + 1297 ], "__typename": [ - 63 + 64 ] }, "maps_obj_rel_insert_input": { "data": [ - 1066 + 1308 ], "on_conflict": [ - 1073 + 1315 ], "__typename": [ - 63 + 64 ] }, "maps_on_conflict": { "constraint": [ - 1065 + 1307 ], "update_columns": [ - 1082 + 1324 ], "where": [ - 1064 + 1306 ], "__typename": [ - 63 + 64 ] }, "maps_order_by": { "active_pool": [ - 1736 + 2005 ], "e_match_type": [ - 483 + 725 ], "enabled": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "match_maps_aggregate": [ - 1421 + 1663 ], "match_veto_picks_aggregate": [ - 1397 + 1639 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "maps_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "maps_select_column": {}, @@ -17084,39 +21382,39 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 475 + 717 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_stream_cursor_input": { "initial_value": [ - 1081 + 1323 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "maps_stream_cursor_value_input": { @@ -17127,199 +21425,199 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 475 + 717 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "maps_update_column": {}, "maps_updates": { "_set": [ - 1079 + 1321 ], "where": [ - 1064 + 1306 ], "__typename": [ - 63 + 64 ] }, "match_clips": { "created_at": [ - 2922 + 3191 ], "download_url": [ - 63 + 64 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map": [ - 1416 + 1658 ], "match_map_demo": [ - 1300 + 1542 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "render_jobs": [ - 166, + 167, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "render_jobs_aggregate": [ - 167, + 168, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target": [ - 2603 + 2872 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_download_url": [ - 63 + 64 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user": [ - 2603 + 2872 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "visibility": [ - 393 + 635 ], "__typename": [ - 63 + 64 ] }, "match_clips_aggregate": { "aggregate": [ - 1088 + 1330 ], "nodes": [ - 1084 + 1326 ], "__typename": [ - 63 + 64 ] }, "match_clips_aggregate_bool_exp": { "count": [ - 1087 + 1329 ], "__typename": [ - 63 + 64 ] }, "match_clips_aggregate_bool_exp_count": { "arguments": [ - 1106 + 1348 ], "distinct": [ 3 ], "filter": [ - 1093 + 1335 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_clips_aggregate_fields": { "avg": [ - 1091 + 1333 ], "count": [ - 34, + 35, { "columns": [ - 1106, + 1348, "[match_clips_select_column!]" ], "distinct": [ @@ -17328,1230 +21626,1230 @@ export default { } ], "max": [ - 1097 + 1339 ], "min": [ - 1099 + 1341 ], "stddev": [ - 1108 + 1350 ], "stddev_pop": [ - 1110 + 1352 ], "stddev_samp": [ - 1112 + 1354 ], "sum": [ - 1116 + 1358 ], "var_pop": [ - 1120 + 1362 ], "var_samp": [ - 1122 + 1364 ], "variance": [ - 1124 + 1366 ], "__typename": [ - 63 + 64 ] }, "match_clips_aggregate_order_by": { "avg": [ - 1092 + 1334 ], "count": [ - 1736 + 2005 ], "max": [ - 1098 + 1340 ], "min": [ - 1100 + 1342 ], "stddev": [ - 1109 + 1351 ], "stddev_pop": [ - 1111 + 1353 ], "stddev_samp": [ - 1113 + 1355 ], "sum": [ - 1117 + 1359 ], "var_pop": [ - 1121 + 1363 ], "var_samp": [ - 1123 + 1365 ], "variance": [ - 1125 + 1367 ], "__typename": [ - 63 + 64 ] }, "match_clips_arr_rel_insert_input": { "data": [ - 1096 + 1338 ], "on_conflict": [ - 1103 + 1345 ], "__typename": [ - 63 + 64 ] }, "match_clips_avg_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_avg_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_bool_exp": { "_and": [ - 1093 + 1335 ], "_not": [ - 1093 + 1335 ], "_or": [ - 1093 + 1335 ], "created_at": [ - 2923 + 3192 ], "download_url": [ - 65 + 66 ], "duration_ms": [ - 35 + 36 ], "file": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "kills_count": [ - 35 + 36 ], "match_map": [ - 1425 + 1667 ], "match_map_demo": [ - 1312 + 1554 ], "match_map_demo_id": [ - 3320 + 3589 ], "match_map_id": [ - 3320 + 3589 ], "render_jobs": [ - 178 + 179 ], "render_jobs_aggregate": [ - 168 + 169 ], "round": [ - 35 + 36 ], "size": [ - 163 + 164 ], "target": [ - 2607 + 2876 ], "target_steam_id": [ - 163 + 164 ], "thumbnail_download_url": [ - 65 + 66 ], "thumbnail_url": [ - 65 + 66 ], "title": [ - 65 + 66 ], "user": [ - 2607 + 2876 ], "user_steam_id": [ - 163 + 164 ], "views_count": [ - 35 + 36 ], "visibility": [ - 394 + 636 ], "__typename": [ - 63 + 64 ] }, "match_clips_constraint": {}, "match_clips_inc_input": { "duration_ms": [ - 34 + 35 ], "kills_count": [ - 34 + 35 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_clips_insert_input": { "created_at": [ - 2922 + 3191 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map": [ - 1434 + 1676 ], "match_map_demo": [ - 1324 + 1566 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "render_jobs": [ - 175 + 176 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target": [ - 2614 + 2883 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user": [ - 2614 + 2883 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "visibility": [ - 393 + 635 ], "__typename": [ - 63 + 64 ] }, "match_clips_max_fields": { "created_at": [ - 2922 + 3191 ], "download_url": [ - 63 + 64 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_download_url": [ - 63 + 64 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_clips_max_order_by": { "created_at": [ - 1736 + 2005 ], "duration_ms": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "thumbnail_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_min_fields": { "created_at": [ - 2922 + 3191 ], "download_url": [ - 63 + 64 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_download_url": [ - 63 + 64 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_clips_min_order_by": { "created_at": [ - 1736 + 2005 ], "duration_ms": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "thumbnail_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1084 + 1326 ], "__typename": [ - 63 + 64 ] }, "match_clips_obj_rel_insert_input": { "data": [ - 1096 + 1338 ], "on_conflict": [ - 1103 + 1345 ], "__typename": [ - 63 + 64 ] }, "match_clips_on_conflict": { "constraint": [ - 1094 + 1336 ], "update_columns": [ - 1118 + 1360 ], "where": [ - 1093 + 1335 ], "__typename": [ - 63 + 64 ] }, "match_clips_order_by": { "created_at": [ - 1736 + 2005 ], "download_url": [ - 1736 + 2005 ], "duration_ms": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_demo": [ - 1326 + 1568 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "render_jobs_aggregate": [ - 173 + 174 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target": [ - 2616 + 2885 ], "target_steam_id": [ - 1736 + 2005 ], "thumbnail_download_url": [ - 1736 + 2005 ], "thumbnail_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "user": [ - 2616 + 2885 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "visibility": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_clips_select_column": {}, "match_clips_set_input": { "created_at": [ - 2922 + 3191 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "visibility": [ - 393 + 635 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_pop_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_pop_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_samp_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_stddev_samp_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_stream_cursor_input": { "initial_value": [ - 1115 + 1357 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_clips_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "duration_ms": [ - 34 + 35 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "kills_count": [ - 34 + 35 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "thumbnail_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "visibility": [ - 393 + 635 ], "__typename": [ - 63 + 64 ] }, "match_clips_sum_fields": { "duration_ms": [ - 34 + 35 ], "kills_count": [ - 34 + 35 ], "round": [ - 34 + 35 ], "size": [ - 162 + 163 ], "target_steam_id": [ - 162 + 163 ], "user_steam_id": [ - 162 + 163 ], "views_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_clips_sum_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_update_column": {}, "match_clips_updates": { "_inc": [ - 1095 + 1337 ], "_set": [ - 1107 + 1349 ], "where": [ - 1093 + 1335 ], "__typename": [ - 63 + 64 ] }, "match_clips_var_pop_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_var_pop_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_var_samp_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_var_samp_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_clips_variance_fields": { "duration_ms": [ - 25 + 26 ], "kills_count": [ - 25 + 26 ], "round": [ - 25 + 26 ], "size": [ - 25 + 26 ], "target_steam_id": [ - 25 + 26 ], "user_steam_id": [ - 25 + 26 ], "views_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_clips_variance_order_by": { "duration_ms": [ - 1736 + 2005 ], "kills_count": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "target_steam_id": [ - 1736 + 2005 ], "user_steam_id": [ - 1736 + 2005 ], "views_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 824 + 1066 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_demo": [ - 1300 + 1542 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "status_history": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "stream_url": [ - 63 + 64 ], "watcher": [ - 2603 + 2872 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_aggregate": { "aggregate": [ - 1130 + 1372 ], "nodes": [ - 1126 + 1368 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_aggregate_bool_exp": { "count": [ - 1129 + 1371 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_aggregate_bool_exp_count": { "arguments": [ - 1152 + 1394 ], "distinct": [ 3 ], "filter": [ - 1136 + 1378 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_aggregate_fields": { "avg": [ - 1134 + 1376 ], "count": [ - 34, + 35, { "columns": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "distinct": [ @@ -18560,876 +22858,876 @@ export default { } ], "max": [ - 1143 + 1385 ], "min": [ - 1145 + 1387 ], "stddev": [ - 1154 + 1396 ], "stddev_pop": [ - 1156 + 1398 ], "stddev_samp": [ - 1158 + 1400 ], "sum": [ - 1162 + 1404 ], "var_pop": [ - 1166 + 1408 ], "var_samp": [ - 1168 + 1410 ], "variance": [ - 1170 + 1412 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_aggregate_order_by": { "avg": [ - 1135 + 1377 ], "count": [ - 1736 + 2005 ], "max": [ - 1144 + 1386 ], "min": [ - 1146 + 1388 ], "stddev": [ - 1155 + 1397 ], "stddev_pop": [ - 1157 + 1399 ], "stddev_samp": [ - 1159 + 1401 ], "sum": [ - 1163 + 1405 ], "var_pop": [ - 1167 + 1409 ], "var_samp": [ - 1169 + 1411 ], "variance": [ - 1171 + 1413 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_append_input": { "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_arr_rel_insert_input": { "data": [ - 1142 + 1384 ], "on_conflict": [ - 1148 + 1390 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_avg_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_avg_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_bool_exp": { "_and": [ - 1136 + 1378 ], "_not": [ - 1136 + 1378 ], "_or": [ - 1136 + 1378 ], "created_at": [ - 2923 + 3192 ], "error_message": [ - 65 + 66 ], "game_server_node": [ - 836 + 1078 ], "game_server_node_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "k8s_job_name": [ - 65 + 66 ], "last_activity_at": [ - 2923 + 3192 ], "last_status_at": [ - 2923 + 3192 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_demo": [ - 1312 + 1554 ], "match_map_demo_id": [ - 3320 + 3589 ], "match_map_id": [ - 3320 + 3589 ], "status": [ - 65 + 66 ], "status_history": [ - 948 + 1190 ], "stream_url": [ - 65 + 66 ], "watcher": [ - 2607 + 2876 ], "watcher_steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_constraint": {}, "match_demo_sessions_delete_at_path_input": { "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_delete_elem_input": { "status_history": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_delete_key_input": { "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_inc_input": { "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_insert_input": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 848 + 1090 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_demo": [ - 1324 + 1566 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "watcher": [ - 2614 + 2883 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_max_fields": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "stream_url": [ - 63 + 64 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_max_order_by": { "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_activity_at": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_min_fields": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "stream_url": [ - 63 + 64 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_min_order_by": { "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_activity_at": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1126 + 1368 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_on_conflict": { "constraint": [ - 1137 + 1379 ], "update_columns": [ - 1164 + 1406 ], "where": [ - 1136 + 1378 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_order_by": { "created_at": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node": [ - 850 + 1092 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "last_activity_at": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_demo": [ - 1326 + 1568 ], "match_map_demo_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "status_history": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "watcher": [ - 2616 + 2885 ], "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_prepend_input": { "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_select_column": {}, "match_demo_sessions_set_input": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_pop_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_pop_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_samp_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stddev_samp_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stream_cursor_input": { "initial_value": [ - 1161 + 1403 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "last_activity_at": [ - 2922 + 3191 ], "last_status_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_demo_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_sum_fields": { "watcher_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_sum_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_update_column": {}, "match_demo_sessions_updates": { "_append": [ - 1132 + 1374 ], "_delete_at_path": [ - 1138 + 1380 ], "_delete_elem": [ - 1139 + 1381 ], "_delete_key": [ - 1140 + 1382 ], "_inc": [ - 1141 + 1383 ], "_prepend": [ - 1151 + 1393 ], "_set": [ - 1153 + 1395 ], "where": [ - 1136 + 1378 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_var_pop_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_var_pop_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_var_samp_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_var_samp_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_variance_fields": { "watcher_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_demo_sessions_variance_order_by": { "watcher_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2603 + 2872 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_aggregate": { "aggregate": [ - 1176 + 1418 ], "nodes": [ - 1172 + 1414 ], "__typename": [ - 63 + 64 ] }, "match_invites_aggregate_bool_exp": { "count": [ - 1175 + 1417 ], "__typename": [ - 63 + 64 ] }, "match_invites_aggregate_bool_exp_count": { "arguments": [ - 1193 + 1435 ], "distinct": [ 3 ], "filter": [ - 1181 + 1423 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_invites_aggregate_fields": { "avg": [ - 1179 + 1421 ], "count": [ - 34, + 35, { "columns": [ - 1193, + 1435, "[match_invites_select_column!]" ], "distinct": [ @@ -19438,547 +23736,547 @@ export default { } ], "max": [ - 1185 + 1427 ], "min": [ - 1187 + 1429 ], "stddev": [ - 1195 + 1437 ], "stddev_pop": [ - 1197 + 1439 ], "stddev_samp": [ - 1199 + 1441 ], "sum": [ - 1203 + 1445 ], "var_pop": [ - 1207 + 1449 ], "var_samp": [ - 1209 + 1451 ], "variance": [ - 1211 + 1453 ], "__typename": [ - 63 + 64 ] }, "match_invites_aggregate_order_by": { "avg": [ - 1180 + 1422 ], "count": [ - 1736 + 2005 ], "max": [ - 1186 + 1428 ], "min": [ - 1188 + 1430 ], "stddev": [ - 1196 + 1438 ], "stddev_pop": [ - 1198 + 1440 ], "stddev_samp": [ - 1200 + 1442 ], "sum": [ - 1204 + 1446 ], "var_pop": [ - 1208 + 1450 ], "var_samp": [ - 1210 + 1452 ], "variance": [ - 1212 + 1454 ], "__typename": [ - 63 + 64 ] }, "match_invites_arr_rel_insert_input": { "data": [ - 1184 + 1426 ], "on_conflict": [ - 1190 + 1432 ], "__typename": [ - 63 + 64 ] }, "match_invites_avg_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_bool_exp": { "_and": [ - 1181 + 1423 ], "_not": [ - 1181 + 1423 ], "_or": [ - 1181 + 1423 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "invited_by": [ - 2607 + 2876 ], "invited_by_player_steam_id": [ - 163 + 164 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "match_invites_constraint": {}, "match_invites_inc_input": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2614 + 2883 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1172 + 1414 ], "__typename": [ - 63 + 64 ] }, "match_invites_on_conflict": { "constraint": [ - 1182 + 1424 ], "update_columns": [ - 1205 + 1447 ], "where": [ - 1181 + 1423 ], "__typename": [ - 63 + 64 ] }, "match_invites_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by": [ - 2616 + 2885 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_invites_select_column": {}, "match_invites_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_stream_cursor_input": { "initial_value": [ - 1202 + 1444 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_sum_fields": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_update_column": {}, "match_invites_updates": { "_inc": [ - 1183 + 1425 ], "_set": [ - 1194 + 1436 ], "where": [ - 1181 + 1423 ], "__typename": [ - 63 + 64 ] }, "match_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_invites_variance_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players": { @@ -19989,115 +24287,115 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate": { "aggregate": [ - 1219 + 1461 ], "nodes": [ - 1213 + 1455 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_bool_exp": { "bool_and": [ - 1216 + 1458 ], "bool_or": [ - 1217 + 1459 ], "count": [ - 1218 + 1460 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_bool_exp_bool_and": { "arguments": [ - 1237 + 1479 ], "distinct": [ 3 ], "filter": [ - 1224 + 1466 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_bool_exp_bool_or": { "arguments": [ - 1238 + 1480 ], "distinct": [ 3 ], "filter": [ - 1224 + 1466 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_bool_exp_count": { "arguments": [ - 1236 + 1478 ], "distinct": [ 3 ], "filter": [ - 1224 + 1466 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_fields": { "avg": [ - 1222 + 1464 ], "count": [ - 34, + 35, { "columns": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "distinct": [ @@ -20106,110 +24404,110 @@ export default { } ], "max": [ - 1228 + 1470 ], "min": [ - 1230 + 1472 ], "stddev": [ - 1240 + 1482 ], "stddev_pop": [ - 1242 + 1484 ], "stddev_samp": [ - 1244 + 1486 ], "sum": [ - 1248 + 1490 ], "var_pop": [ - 1252 + 1494 ], "var_samp": [ - 1254 + 1496 ], "variance": [ - 1256 + 1498 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_aggregate_order_by": { "avg": [ - 1223 + 1465 ], "count": [ - 1736 + 2005 ], "max": [ - 1229 + 1471 ], "min": [ - 1231 + 1473 ], "stddev": [ - 1241 + 1483 ], "stddev_pop": [ - 1243 + 1485 ], "stddev_samp": [ - 1245 + 1487 ], "sum": [ - 1249 + 1491 ], "var_pop": [ - 1253 + 1495 ], "var_samp": [ - 1255 + 1497 ], "variance": [ - 1257 + 1499 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_arr_rel_insert_input": { "data": [ - 1227 + 1469 ], "on_conflict": [ - 1233 + 1475 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_avg_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_bool_exp": { "_and": [ - 1224 + 1466 ], "_not": [ - 1224 + 1466 ], "_or": [ - 1224 + 1466 ], "captain": [ 4 @@ -20218,37 +24516,37 @@ export default { 4 ], "discord_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "placeholder_name": [ - 65 + 66 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_constraint": {}, "match_lineup_players_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_insert_input": { @@ -20259,173 +24557,173 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_max_fields": { "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_max_order_by": { "discord_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "placeholder_name": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_min_fields": { "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_min_order_by": { "discord_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "placeholder_name": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1213 + 1455 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_on_conflict": { "constraint": [ - 1225 + 1467 ], "update_columns": [ - 1250 + 1492 ], "where": [ - 1224 + 1466 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_order_by": { "captain": [ - 1736 + 2005 ], "checked_in": [ - 1736 + 2005 ], "discord_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "placeholder_name": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_select_column": {}, @@ -20439,81 +24737,81 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stddev_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stream_cursor_input": { "initial_value": [ - 1247 + 1489 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_stream_cursor_value_input": { @@ -20524,101 +24822,101 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_sum_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_update_column": {}, "match_lineup_players_updates": { "_inc": [ - 1226 + 1468 ], "_set": [ - 1239 + 1481 ], "where": [ - 1224 + 1466 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_var_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_var_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineup_players_variance_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups": { @@ -20632,16 +24930,16 @@ export default { 3 ], "captain": [ - 3339 + 3608 ], "coach": [ - 2603 + 2872 ], "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "is_on_lineup": [ 3 @@ -20656,160 +24954,160 @@ export default { 3 ], "lineup_players": [ - 1213, + 1455, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "lineup_players_aggregate": [ - 1214, + 1456, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "name": [ - 63 + 64 ], "team": [ - 2879 + 3148 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_aggregate": { "aggregate": [ - 1262 + 1504 ], "nodes": [ - 1258 + 1500 ], "__typename": [ - 63 + 64 ] }, "match_lineups_aggregate_bool_exp": { "count": [ - 1261 + 1503 ], "__typename": [ - 63 + 64 ] }, "match_lineups_aggregate_bool_exp_count": { "arguments": [ - 1280 + 1522 ], "distinct": [ 3 ], "filter": [ - 1267 + 1509 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_lineups_aggregate_fields": { "avg": [ - 1265 + 1507 ], "count": [ - 34, + 35, { "columns": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "distinct": [ @@ -20818,110 +25116,110 @@ export default { } ], "max": [ - 1271 + 1513 ], "min": [ - 1273 + 1515 ], "stddev": [ - 1282 + 1524 ], "stddev_pop": [ - 1284 + 1526 ], "stddev_samp": [ - 1286 + 1528 ], "sum": [ - 1290 + 1532 ], "var_pop": [ - 1294 + 1536 ], "var_samp": [ - 1296 + 1538 ], "variance": [ - 1298 + 1540 ], "__typename": [ - 63 + 64 ] }, "match_lineups_aggregate_order_by": { "avg": [ - 1266 + 1508 ], "count": [ - 1736 + 2005 ], "max": [ - 1272 + 1514 ], "min": [ - 1274 + 1516 ], "stddev": [ - 1283 + 1525 ], "stddev_pop": [ - 1285 + 1527 ], "stddev_samp": [ - 1287 + 1529 ], "sum": [ - 1291 + 1533 ], "var_pop": [ - 1295 + 1537 ], "var_samp": [ - 1297 + 1539 ], "variance": [ - 1299 + 1541 ], "__typename": [ - 63 + 64 ] }, "match_lineups_arr_rel_insert_input": { "data": [ - 1270 + 1512 ], "on_conflict": [ - 1277 + 1519 ], "__typename": [ - 63 + 64 ] }, "match_lineups_avg_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_avg_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_bool_exp": { "_and": [ - 1267 + 1509 ], "_not": [ - 1267 + 1509 ], "_or": [ - 1267 + 1509 ], "can_pick_map_veto": [ 4 @@ -20933,16 +25231,16 @@ export default { 4 ], "captain": [ - 3343 + 3612 ], "coach": [ - 2607 + 2876 ], "coach_steam_id": [ - 163 + 164 ], "id": [ - 3320 + 3589 ], "is_on_lineup": [ 4 @@ -20957,771 +25255,771 @@ export default { 4 ], "lineup_players": [ - 1224 + 1466 ], "lineup_players_aggregate": [ - 1215 + 1457 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_veto_picks": [ - 1399 + 1641 ], "match_veto_picks_aggregate": [ - 1394 + 1636 ], "name": [ - 65 + 66 ], "team": [ - 2888 + 3157 ], "team_id": [ - 3320 + 3589 ], "team_name": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "match_lineups_constraint": {}, "match_lineups_inc_input": { "coach_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineups_insert_input": { "captain": [ - 3349 + 3618 ], "coach": [ - 2614 + 2883 ], "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "lineup_players": [ - 1221 + 1463 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_veto_picks": [ - 1398 + 1640 ], "team": [ - 2897 + 3166 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_max_fields": { "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_max_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "team_name": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_min_fields": { "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_min_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "team_name": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1258 + 1500 ], "__typename": [ - 63 + 64 ] }, "match_lineups_obj_rel_insert_input": { "data": [ - 1270 + 1512 ], "on_conflict": [ - 1277 + 1519 ], "__typename": [ - 63 + 64 ] }, "match_lineups_on_conflict": { "constraint": [ - 1268 + 1510 ], "update_columns": [ - 1292 + 1534 ], "where": [ - 1267 + 1509 ], "__typename": [ - 63 + 64 ] }, "match_lineups_order_by": { "can_pick_map_veto": [ - 1736 + 2005 ], "can_pick_region_veto": [ - 1736 + 2005 ], "can_update_lineup": [ - 1736 + 2005 ], "captain": [ - 3350 + 3619 ], "coach": [ - 2616 + 2885 ], "coach_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "is_on_lineup": [ - 1736 + 2005 ], "is_picking_map_veto": [ - 1736 + 2005 ], "is_picking_region_veto": [ - 1736 + 2005 ], "is_ready": [ - 1736 + 2005 ], "lineup_players_aggregate": [ - 1220 + 1462 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_veto_picks_aggregate": [ - 1397 + 1639 ], "name": [ - 1736 + 2005 ], "team": [ - 2899 + 3168 ], "team_id": [ - 1736 + 2005 ], "team_name": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_lineups_select_column": {}, "match_lineups_set_input": { "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_pop_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_pop_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_samp_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stddev_samp_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stream_cursor_input": { "initial_value": [ - 1289 + 1531 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_lineups_stream_cursor_value_input": { "coach_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "team_id": [ - 3319 + 3588 ], "team_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_lineups_sum_fields": { "coach_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "match_lineups_sum_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_update_column": {}, "match_lineups_updates": { "_inc": [ - 1269 + 1511 ], "_set": [ - 1281 + 1523 ], "where": [ - 1267 + 1509 ], "__typename": [ - 63 + 64 ] }, "match_lineups_var_pop_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_var_pop_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_var_samp_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_var_samp_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_lineups_variance_fields": { "coach_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_lineups_variance_order_by": { "coach_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos": { "bombs": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "clip_render_jobs": [ - 166, + 167, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "clip_render_jobs_aggregate": [ - 167, + 168, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "demo_sessions": [ - 1126, + 1368, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "demo_sessions_aggregate": [ - 1127, + 1369, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "download_url": [ - 63 + 64 ], "duration_seconds": [ - 25 + 26 ], "file": [ - 63 + 64 ], "geometry_validated": [ 3 ], "id": [ - 3319 + 3588 ], "kills": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "map_name": [ - 63 + 64 ], "match": [ - 1578 + 1820 ], "match_clips": [ - 1084, + 1326, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_aggregate": [ - 1085, + 1327, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "playback_url": [ - 63 + 64 ], "players": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "round_ticks": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate": { "aggregate": [ - 1306 + 1548 ], "nodes": [ - 1300 + 1542 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_bool_exp": { "bool_and": [ - 1303 + 1545 ], "bool_or": [ - 1304 + 1546 ], "count": [ - 1305 + 1547 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_bool_exp_bool_and": { "arguments": [ - 1330 + 1572 ], "distinct": [ 3 ], "filter": [ - 1312 + 1554 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_bool_exp_bool_or": { "arguments": [ - 1331 + 1573 ], "distinct": [ 3 ], "filter": [ - 1312 + 1554 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_bool_exp_count": { "arguments": [ - 1329 + 1571 ], "distinct": [ 3 ], "filter": [ - 1312 + 1554 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_fields": { "avg": [ - 1310 + 1552 ], "count": [ - 34, + 35, { "columns": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "distinct": [ @@ -21730,749 +26028,749 @@ export default { } ], "max": [ - 1319 + 1561 ], "min": [ - 1321 + 1563 ], "stddev": [ - 1333 + 1575 ], "stddev_pop": [ - 1335 + 1577 ], "stddev_samp": [ - 1337 + 1579 ], "sum": [ - 1341 + 1583 ], "var_pop": [ - 1345 + 1587 ], "var_samp": [ - 1347 + 1589 ], "variance": [ - 1349 + 1591 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_aggregate_order_by": { "avg": [ - 1311 + 1553 ], "count": [ - 1736 + 2005 ], "max": [ - 1320 + 1562 ], "min": [ - 1322 + 1564 ], "stddev": [ - 1334 + 1576 ], "stddev_pop": [ - 1336 + 1578 ], "stddev_samp": [ - 1338 + 1580 ], "sum": [ - 1342 + 1584 ], "var_pop": [ - 1346 + 1588 ], "var_samp": [ - 1348 + 1590 ], "variance": [ - 1350 + 1592 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_append_input": { "bombs": [ - 946 + 1188 ], "kills": [ - 946 + 1188 ], "players": [ - 946 + 1188 ], "round_ticks": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_arr_rel_insert_input": { "data": [ - 1318 + 1560 ], "on_conflict": [ - 1325 + 1567 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_avg_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_avg_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_bool_exp": { "_and": [ - 1312 + 1554 ], "_not": [ - 1312 + 1554 ], "_or": [ - 1312 + 1554 ], "bombs": [ - 948 + 1190 ], "clip_render_jobs": [ - 178 + 179 ], "clip_render_jobs_aggregate": [ - 168 + 169 ], "created_at": [ - 2923 + 3192 ], "cs2_build": [ - 65 + 66 ], "demo_sessions": [ - 1136 + 1378 ], "demo_sessions_aggregate": [ - 1128 + 1370 ], "download_url": [ - 65 + 66 ], "duration_seconds": [ - 26 + 27 ], "file": [ - 65 + 66 ], "geometry_validated": [ 4 ], "id": [ - 3320 + 3589 ], "kills": [ - 948 + 1190 ], "map_name": [ - 65 + 66 ], "match": [ - 1587 + 1829 ], "match_clips": [ - 1093 + 1335 ], "match_clips_aggregate": [ - 1086 + 1328 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "metadata_parsed_at": [ - 2923 + 3192 ], "playback_file": [ - 65 + 66 ], "playback_size": [ - 35 + 36 ], "playback_url": [ - 65 + 66 ], "players": [ - 948 + 1190 ], "round_ticks": [ - 948 + 1190 ], "size": [ - 35 + 36 ], "tick_rate": [ - 26 + 27 ], "total_ticks": [ - 35 + 36 ], "workshop_id": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_constraint": {}, "match_map_demos_delete_at_path_input": { "bombs": [ - 63 + 64 ], "kills": [ - 63 + 64 ], "players": [ - 63 + 64 ], "round_ticks": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_delete_elem_input": { "bombs": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "players": [ - 34 + 35 ], "round_ticks": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_delete_key_input": { "bombs": [ - 63 + 64 ], "kills": [ - 63 + 64 ], "players": [ - 63 + 64 ], "round_ticks": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_inc_input": { "playback_size": [ - 34 + 35 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_insert_input": { "bombs": [ - 946 + 1188 ], "clip_render_jobs": [ - 175 + 176 ], "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "demo_sessions": [ - 1133 + 1375 ], "file": [ - 63 + 64 ], "geometry_validated": [ 3 ], "id": [ - 3319 + 3588 ], "kills": [ - 946 + 1188 ], "map_name": [ - 63 + 64 ], "match": [ - 1596 + 1838 ], "match_clips": [ - 1090 + 1332 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "players": [ - 946 + 1188 ], "round_ticks": [ - 946 + 1188 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_max_fields": { "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "download_url": [ - 63 + 64 ], "duration_seconds": [ - 25 + 26 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "map_name": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "playback_url": [ - 63 + 64 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_max_order_by": { "created_at": [ - 1736 + 2005 ], "cs2_build": [ - 1736 + 2005 ], "duration_seconds": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "map_name": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "metadata_parsed_at": [ - 1736 + 2005 ], "playback_file": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "workshop_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_min_fields": { "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "download_url": [ - 63 + 64 ], "duration_seconds": [ - 25 + 26 ], "file": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "map_name": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "playback_url": [ - 63 + 64 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_min_order_by": { "created_at": [ - 1736 + 2005 ], "cs2_build": [ - 1736 + 2005 ], "duration_seconds": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "map_name": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "metadata_parsed_at": [ - 1736 + 2005 ], "playback_file": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "workshop_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1300 + 1542 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_obj_rel_insert_input": { "data": [ - 1318 + 1560 ], "on_conflict": [ - 1325 + 1567 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_on_conflict": { "constraint": [ - 1313 + 1555 ], "update_columns": [ - 1343 + 1585 ], "where": [ - 1312 + 1554 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_order_by": { "bombs": [ - 1736 + 2005 ], "clip_render_jobs_aggregate": [ - 173 + 174 ], "created_at": [ - 1736 + 2005 ], "cs2_build": [ - 1736 + 2005 ], "demo_sessions_aggregate": [ - 1131 + 1373 ], "download_url": [ - 1736 + 2005 ], "duration_seconds": [ - 1736 + 2005 ], "file": [ - 1736 + 2005 ], "geometry_validated": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_name": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_clips_aggregate": [ - 1089 + 1331 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "metadata_parsed_at": [ - 1736 + 2005 ], "playback_file": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "playback_url": [ - 1736 + 2005 ], "players": [ - 1736 + 2005 ], "round_ticks": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "workshop_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_prepend_input": { "bombs": [ - 946 + 1188 ], "kills": [ - 946 + 1188 ], "players": [ - 946 + 1188 ], "round_ticks": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_select_column": {}, @@ -22480,647 +26778,647 @@ export default { "match_map_demos_select_column_match_map_demos_aggregate_bool_exp_bool_or_arguments_columns": {}, "match_map_demos_set_input": { "bombs": [ - 946 + 1188 ], "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "file": [ - 63 + 64 ], "geometry_validated": [ 3 ], "id": [ - 3319 + 3588 ], "kills": [ - 946 + 1188 ], "map_name": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "players": [ - 946 + 1188 ], "round_ticks": [ - 946 + 1188 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_pop_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_pop_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_samp_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stddev_samp_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stream_cursor_input": { "initial_value": [ - 1340 + 1582 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_stream_cursor_value_input": { "bombs": [ - 946 + 1188 ], "created_at": [ - 2922 + 3191 ], "cs2_build": [ - 63 + 64 ], "duration_seconds": [ - 25 + 26 ], "file": [ - 63 + 64 ], "geometry_validated": [ 3 ], "id": [ - 3319 + 3588 ], "kills": [ - 946 + 1188 ], "map_name": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "metadata_parsed_at": [ - 2922 + 3191 ], "playback_file": [ - 63 + 64 ], "playback_size": [ - 34 + 35 ], "players": [ - 946 + 1188 ], "round_ticks": [ - 946 + 1188 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "workshop_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_sum_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 34 + 35 ], "size": [ - 34 + 35 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_sum_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_update_column": {}, "match_map_demos_updates": { "_append": [ - 1308 + 1550 ], "_delete_at_path": [ - 1314 + 1556 ], "_delete_elem": [ - 1315 + 1557 ], "_delete_key": [ - 1316 + 1558 ], "_inc": [ - 1317 + 1559 ], "_prepend": [ - 1328 + 1570 ], "_set": [ - 1332 + 1574 ], "where": [ - 1312 + 1554 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_var_pop_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_var_pop_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_var_samp_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_var_samp_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_variance_fields": { "duration_seconds": [ - 25 + 26 ], "playback_size": [ - 25 + 26 ], "size": [ - 25 + 26 ], "tick_rate": [ - 25 + 26 ], "total_ticks": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_demos_variance_order_by": { "duration_seconds": [ - 1736 + 2005 ], "playback_size": [ - 1736 + 2005 ], "size": [ - 1736 + 2005 ], "tick_rate": [ - 1736 + 2005 ], "total_ticks": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds": { "assists": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "assists_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "has_backup_file": [ 3 ], "id": [ - 3319 + 3588 ], "kills": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "kills_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_reason": [ - 780 + 1022 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_aggregate": { "aggregate": [ - 1355 + 1597 ], "nodes": [ - 1351 + 1593 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_aggregate_bool_exp": { "count": [ - 1354 + 1596 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_aggregate_bool_exp_count": { "arguments": [ - 1372 + 1614 ], "distinct": [ 3 ], "filter": [ - 1360 + 1602 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_aggregate_fields": { "avg": [ - 1358 + 1600 ], "count": [ - 34, + 35, { "columns": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "distinct": [ @@ -23129,1181 +27427,1181 @@ export default { } ], "max": [ - 1364 + 1606 ], "min": [ - 1366 + 1608 ], "stddev": [ - 1374 + 1616 ], "stddev_pop": [ - 1376 + 1618 ], "stddev_samp": [ - 1378 + 1620 ], "sum": [ - 1382 + 1624 ], "var_pop": [ - 1386 + 1628 ], "var_samp": [ - 1388 + 1630 ], "variance": [ - 1390 + 1632 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_aggregate_order_by": { "avg": [ - 1359 + 1601 ], "count": [ - 1736 + 2005 ], "max": [ - 1365 + 1607 ], "min": [ - 1367 + 1609 ], "stddev": [ - 1375 + 1617 ], "stddev_pop": [ - 1377 + 1619 ], "stddev_samp": [ - 1379 + 1621 ], "sum": [ - 1383 + 1625 ], "var_pop": [ - 1387 + 1629 ], "var_samp": [ - 1389 + 1631 ], "variance": [ - 1391 + 1633 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_arr_rel_insert_input": { "data": [ - 1363 + 1605 ], "on_conflict": [ - 1369 + 1611 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_avg_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_avg_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_bool_exp": { "_and": [ - 1360 + 1602 ], "_not": [ - 1360 + 1602 ], "_or": [ - 1360 + 1602 ], "assists": [ - 1885 + 2154 ], "assists_aggregate": [ - 1876 + 2145 ], "backup_file": [ - 65 + 66 ], "created_at": [ - 2923 + 3192 ], "deleted_at": [ - 2923 + 3192 ], "has_backup_file": [ 4 ], "id": [ - 3320 + 3589 ], "kills": [ - 2102 + 2371 ], "kills_aggregate": [ - 2093 + 2362 ], "lineup_1_money": [ - 35 + 36 ], "lineup_1_score": [ - 35 + 36 ], "lineup_1_side": [ - 618 + 860 ], "lineup_1_timeouts_available": [ - 35 + 36 ], "lineup_2_money": [ - 35 + 36 ], "lineup_2_score": [ - 35 + 36 ], "lineup_2_side": [ - 618 + 860 ], "lineup_2_timeouts_available": [ - 35 + 36 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "round": [ - 35 + 36 ], "time": [ - 2923 + 3192 ], "winning_reason": [ - 781 + 1023 ], "winning_side": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_constraint": {}, "match_map_rounds_inc_input": { "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_insert_input": { "assists": [ - 1882 + 2151 ], "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "kills": [ - 2099 + 2368 ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_reason": [ - 780 + 1022 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_max_fields": { "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_max_order_by": { "backup_file": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "winning_side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_min_fields": { "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_min_order_by": { "backup_file": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "winning_side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1351 + 1593 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_on_conflict": { "constraint": [ - 1361 + 1603 ], "update_columns": [ - 1384 + 1626 ], "where": [ - 1360 + 1602 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_order_by": { "assists_aggregate": [ - 1881 + 2150 ], "backup_file": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "has_backup_file": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "kills_aggregate": [ - 2098 + 2367 ], "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_side": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_side": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "winning_reason": [ - 1736 + 2005 ], "winning_side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_select_column": {}, "match_map_rounds_set_input": { "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_reason": [ - 780 + 1022 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_pop_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_pop_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_samp_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stddev_samp_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stream_cursor_input": { "initial_value": [ - 1381 + 1623 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_stream_cursor_value_input": { "backup_file": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "winning_reason": [ - 780 + 1022 ], "winning_side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_sum_fields": { "lineup_1_money": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_money": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_sum_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_update_column": {}, "match_map_rounds_updates": { "_inc": [ - 1362 + 1604 ], "_set": [ - 1373 + 1615 ], "where": [ - 1360 + 1602 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_var_pop_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_var_pop_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_var_samp_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_var_samp_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_variance_fields": { "lineup_1_money": [ - 25 + 26 ], "lineup_1_score": [ - 25 + 26 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_money": [ - 25 + 26 ], "lineup_2_score": [ - 25 + 26 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_map_rounds_variance_order_by": { "lineup_1_money": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_money": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_aggregate": { "aggregate": [ - 1396 + 1638 ], "nodes": [ - 1392 + 1634 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_aggregate_bool_exp": { "count": [ - 1395 + 1637 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1410 + 1652 ], "distinct": [ 3 ], "filter": [ - 1399 + 1641 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "distinct": [ @@ -24312,965 +28610,965 @@ export default { } ], "max": [ - 1402 + 1644 ], "min": [ - 1404 + 1646 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_aggregate_order_by": { "count": [ - 1736 + 2005 ], "max": [ - 1403 + 1645 ], "min": [ - 1405 + 1647 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_arr_rel_insert_input": { "data": [ - 1401 + 1643 ], "on_conflict": [ - 1407 + 1649 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_bool_exp": { "_and": [ - 1399 + 1641 ], "_not": [ - 1399 + 1641 ], "_or": [ - 1399 + 1641 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "side": [ - 65 + 66 ], "type": [ - 761 + 1003 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_constraint": {}, "match_map_veto_picks_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map": [ - 1072 + 1314 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1392 + 1634 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_on_conflict": { "constraint": [ - 1400 + 1642 ], "update_columns": [ - 1414 + 1656 ], "where": [ - 1399 + 1641 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_select_column": {}, "match_map_veto_picks_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_stream_cursor_input": { "initial_value": [ - 1413 + 1655 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_map_veto_picks_update_column": {}, "match_map_veto_picks_updates": { "_set": [ - 1411 + 1653 ], "where": [ - 1399 + 1641 ], "__typename": [ - 63 + 64 ] }, "match_maps": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "demos": [ - 1300, + 1542, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "demos_aggregate": [ - 1301, + 1543, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "demos_download_url": [ - 63 + 64 ], "demos_total_size": [ - 34 + 35 ], "e_match_map_status": [ - 408 + 650 ], "ended_at": [ - 2922 + 3191 ], "flashes": [ - 2046, + 2315, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "flashes_aggregate": [ - 2047, + 2316, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "id": [ - 3319 + 3588 ], "is_current_map": [ 3 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_clips": [ - 1084, + 1326, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_aggregate": [ - 1085, + 1327, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_id": [ - 3319 + 3588 ], "objectives": [ - 2292, + 2561, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "objectives_aggregate": [ - 2293, + 2562, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "order": [ - 34 + 35 ], "player_assists": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_assists_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_damages": [ - 1937, + 2206, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_damages_aggregate": [ - 1938, + 2207, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_kills": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_kills_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_unused_utilities": [ - 2488, + 2757, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utilities_aggregate": [ - 2489, + 2758, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "rounds": [ - 1351, + 1593, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "rounds_aggregate": [ - 1352, + 1594, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "started_at": [ - 2922 + 3191 ], "status": [ - 413 + 655 ], "utility": [ - 2529, + 2798, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "utility_aggregate": [ - 2530, + 2799, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "vetos": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "vetos_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_aggregate": { "aggregate": [ - 1420 + 1662 ], "nodes": [ - 1416 + 1658 ], "__typename": [ - 63 + 64 ] }, "match_maps_aggregate_bool_exp": { "count": [ - 1419 + 1661 ], "__typename": [ - 63 + 64 ] }, "match_maps_aggregate_bool_exp_count": { "arguments": [ - 1438 + 1680 ], "distinct": [ 3 ], "filter": [ - 1425 + 1667 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_maps_aggregate_fields": { "avg": [ - 1423 + 1665 ], "count": [ - 34, + 35, { "columns": [ - 1438, + 1680, "[match_maps_select_column!]" ], "distinct": [ @@ -25279,1271 +29577,1271 @@ export default { } ], "max": [ - 1429 + 1671 ], "min": [ - 1431 + 1673 ], "stddev": [ - 1440 + 1682 ], "stddev_pop": [ - 1442 + 1684 ], "stddev_samp": [ - 1444 + 1686 ], "sum": [ - 1448 + 1690 ], "var_pop": [ - 1452 + 1694 ], "var_samp": [ - 1454 + 1696 ], "variance": [ - 1456 + 1698 ], "__typename": [ - 63 + 64 ] }, "match_maps_aggregate_order_by": { "avg": [ - 1424 + 1666 ], "count": [ - 1736 + 2005 ], "max": [ - 1430 + 1672 ], "min": [ - 1432 + 1674 ], "stddev": [ - 1441 + 1683 ], "stddev_pop": [ - 1443 + 1685 ], "stddev_samp": [ - 1445 + 1687 ], "sum": [ - 1449 + 1691 ], "var_pop": [ - 1453 + 1695 ], "var_samp": [ - 1455 + 1697 ], "variance": [ - 1457 + 1699 ], "__typename": [ - 63 + 64 ] }, "match_maps_arr_rel_insert_input": { "data": [ - 1428 + 1670 ], "on_conflict": [ - 1435 + 1677 ], "__typename": [ - 63 + 64 ] }, "match_maps_avg_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_avg_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_bool_exp": { "_and": [ - 1425 + 1667 ], "_not": [ - 1425 + 1667 ], "_or": [ - 1425 + 1667 ], "clips_count": [ - 35 + 36 ], "created_at": [ - 2923 + 3192 ], "demos": [ - 1312 + 1554 ], "demos_aggregate": [ - 1302 + 1544 ], "demos_download_url": [ - 65 + 66 ], "demos_total_size": [ - 35 + 36 ], "e_match_map_status": [ - 411 + 653 ], "ended_at": [ - 2923 + 3192 ], "flashes": [ - 2057 + 2326 ], "flashes_aggregate": [ - 2048 + 2317 ], "id": [ - 3320 + 3589 ], "is_current_map": [ 4 ], "latest_clip_at": [ - 2923 + 3192 ], "lineup_1_score": [ - 35 + 36 ], "lineup_1_side": [ - 618 + 860 ], "lineup_1_timeouts_available": [ - 35 + 36 ], "lineup_2_score": [ - 35 + 36 ], "lineup_2_side": [ - 618 + 860 ], "lineup_2_timeouts_available": [ - 35 + 36 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_clips": [ - 1093 + 1335 ], "match_clips_aggregate": [ - 1086 + 1328 ], "match_id": [ - 3320 + 3589 ], "objectives": [ - 2301 + 2570 ], "objectives_aggregate": [ - 2294 + 2563 ], "order": [ - 35 + 36 ], "player_assists": [ - 1885 + 2154 ], "player_assists_aggregate": [ - 1876 + 2145 ], "player_damages": [ - 1946 + 2215 ], "player_damages_aggregate": [ - 1939 + 2208 ], "player_kills": [ - 2102 + 2371 ], "player_kills_aggregate": [ - 2093 + 2362 ], "player_unused_utilities": [ - 2497 + 2766 ], "player_unused_utilities_aggregate": [ - 2490 + 2759 ], "public_clips_count": [ - 35 + 36 ], "public_latest_clip_at": [ - 2923 + 3192 ], "rounds": [ - 1360 + 1602 ], "rounds_aggregate": [ - 1353 + 1595 ], "started_at": [ - 2923 + 3192 ], "status": [ - 414 + 656 ], "utility": [ - 2538 + 2807 ], "utility_aggregate": [ - 2531 + 2800 ], "vetos": [ - 1399 + 1641 ], "vetos_aggregate": [ - 1394 + 1636 ], "winning_lineup_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "match_maps_constraint": {}, "match_maps_inc_input": { "clips_count": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_maps_insert_input": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "demos": [ - 1309 + 1551 ], "e_match_map_status": [ - 419 + 661 ], "ended_at": [ - 2922 + 3191 ], "flashes": [ - 2054 + 2323 ], "id": [ - 3319 + 3588 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map": [ - 1072 + 1314 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_clips": [ - 1090 + 1332 ], "match_id": [ - 3319 + 3588 ], "objectives": [ - 2298 + 2567 ], "order": [ - 34 + 35 ], "player_assists": [ - 1882 + 2151 ], "player_damages": [ - 1943 + 2212 ], "player_kills": [ - 2099 + 2368 ], "player_unused_utilities": [ - 2494 + 2763 ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "rounds": [ - 1357 + 1599 ], "started_at": [ - 2922 + 3191 ], "status": [ - 413 + 655 ], "utility": [ - 2535 + 2804 ], "vetos": [ - 1398 + 1640 ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_max_fields": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "demos_download_url": [ - 63 + 64 ], "demos_total_size": [ - 34 + 35 ], "ended_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "started_at": [ - 2922 + 3191 ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_max_order_by": { "clips_count": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "ended_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "latest_clip_at": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "public_latest_clip_at": [ - 1736 + 2005 ], "started_at": [ - 1736 + 2005 ], "winning_lineup_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_min_fields": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "demos_download_url": [ - 63 + 64 ], "demos_total_size": [ - 34 + 35 ], "ended_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "started_at": [ - 2922 + 3191 ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_min_order_by": { "clips_count": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "ended_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "latest_clip_at": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "public_latest_clip_at": [ - 1736 + 2005 ], "started_at": [ - 1736 + 2005 ], "winning_lineup_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1416 + 1658 ], "__typename": [ - 63 + 64 ] }, "match_maps_obj_rel_insert_input": { "data": [ - 1428 + 1670 ], "on_conflict": [ - 1435 + 1677 ], "__typename": [ - 63 + 64 ] }, "match_maps_on_conflict": { "constraint": [ - 1426 + 1668 ], "update_columns": [ - 1450 + 1692 ], "where": [ - 1425 + 1667 ], "__typename": [ - 63 + 64 ] }, "match_maps_order_by": { "clips_count": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "demos_aggregate": [ - 1307 + 1549 ], "demos_download_url": [ - 1736 + 2005 ], "demos_total_size": [ - 1736 + 2005 ], "e_match_map_status": [ - 421 + 663 ], "ended_at": [ - 1736 + 2005 ], "flashes_aggregate": [ - 2053 + 2322 ], "id": [ - 1736 + 2005 ], "is_current_map": [ - 1736 + 2005 ], "latest_clip_at": [ - 1736 + 2005 ], "lineup_1_score": [ - 1736 + 2005 ], "lineup_1_side": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_score": [ - 1736 + 2005 ], "lineup_2_side": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_clips_aggregate": [ - 1089 + 1331 ], "match_id": [ - 1736 + 2005 ], "objectives_aggregate": [ - 2297 + 2566 ], "order": [ - 1736 + 2005 ], "player_assists_aggregate": [ - 1881 + 2150 ], "player_damages_aggregate": [ - 1942 + 2211 ], "player_kills_aggregate": [ - 2098 + 2367 ], "player_unused_utilities_aggregate": [ - 2493 + 2762 ], "public_clips_count": [ - 1736 + 2005 ], "public_latest_clip_at": [ - 1736 + 2005 ], "rounds_aggregate": [ - 1356 + 1598 ], "started_at": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "utility_aggregate": [ - 2534 + 2803 ], "vetos_aggregate": [ - 1397 + 1639 ], "winning_lineup_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_select_column": {}, "match_maps_set_input": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "ended_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "started_at": [ - 2922 + 3191 ], "status": [ - 413 + 655 ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_pop_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_pop_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_samp_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_stddev_samp_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_stream_cursor_input": { "initial_value": [ - 1447 + 1689 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_maps_stream_cursor_value_input": { "clips_count": [ - 34 + 35 ], "created_at": [ - 2922 + 3191 ], "ended_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "latest_clip_at": [ - 2922 + 3191 ], "lineup_1_side": [ - 617 + 859 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_side": [ - 617 + 859 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "public_latest_clip_at": [ - 2922 + 3191 ], "started_at": [ - 2922 + 3191 ], "status": [ - 413 + 655 ], "winning_lineup_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_maps_sum_fields": { "clips_count": [ - 34 + 35 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 34 + 35 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 34 + 35 ], "order": [ - 34 + 35 ], "public_clips_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_maps_sum_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_update_column": {}, "match_maps_updates": { "_inc": [ - 1427 + 1669 ], "_set": [ - 1439 + 1681 ], "where": [ - 1425 + 1667 ], "__typename": [ - 63 + 64 ] }, "match_maps_var_pop_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_var_pop_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_var_samp_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_var_samp_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_maps_variance_fields": { "clips_count": [ - 25 + 26 ], "demos_total_size": [ - 34 + 35 ], "lineup_1_score": [ - 34 + 35 ], "lineup_1_timeouts_available": [ - 25 + 26 ], "lineup_2_score": [ - 34 + 35 ], "lineup_2_timeouts_available": [ - 25 + 26 ], "order": [ - 25 + 26 ], "public_clips_count": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_maps_variance_order_by": { "clips_count": [ - 1736 + 2005 ], "lineup_1_timeouts_available": [ - 1736 + 2005 ], "lineup_2_timeouts_available": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "public_clips_count": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_options": { "auto_cancel_duration": [ - 34 + 35 ], "auto_cancellation": [ 3 ], "best_of": [ - 34 + 35 ], "check_in_setting": [ - 249 + 386 ], "coaches": [ 3 @@ -26555,81 +30853,81 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "knife_round": [ 3 ], "live_match_timeout": [ - 34 + 35 ], "lobby_access": [ - 331 + 573 ], "map_pool": [ - 1036 + 1278 ], "map_pool_id": [ - 3319 + 3588 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 676 ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_aggregate": [ - 1579, + 1821, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "overtime": [ 3 @@ -26638,59 +30936,59 @@ export default { 3 ], "ready_setting": [ - 556 + 798 ], "region_veto": [ 3 ], "regions": [ - 63 + 64 ], "tech_timeout_setting": [ - 678 + 920 ], "timeout_setting": [ - 678 + 920 ], "tournament": [ - 3273 + 3542 ], "tournament_bracket": [ - 2924 + 3193 ], "tournament_stage": [ - 3011 + 3280 ], "tv_delay": [ - 34 + 35 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "match_options_aggregate": { "aggregate": [ - 1460 + 1702 ], "nodes": [ - 1458 + 1700 ], "__typename": [ - 63 + 64 ] }, "match_options_aggregate_fields": { "avg": [ - 1461 + 1703 ], "count": [ - 34, + 35, { "columns": [ - 1473, + 1715, "[match_options_select_column!]" ], "distinct": [ @@ -26699,80 +30997,80 @@ export default { } ], "max": [ - 1466 + 1708 ], "min": [ - 1467 + 1709 ], "stddev": [ - 1475 + 1717 ], "stddev_pop": [ - 1476 + 1718 ], "stddev_samp": [ - 1477 + 1719 ], "sum": [ - 1480 + 1722 ], "var_pop": [ - 1483 + 1725 ], "var_samp": [ - 1484 + 1726 ], "variance": [ - 1485 + 1727 ], "__typename": [ - 63 + 64 ] }, "match_options_avg_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_bool_exp": { "_and": [ - 1462 + 1704 ], "_not": [ - 1462 + 1704 ], "_or": [ - 1462 + 1704 ], "auto_cancel_duration": [ - 35 + 36 ], "auto_cancellation": [ 4 ], "best_of": [ - 35 + 36 ], "check_in_setting": [ - 250 + 387 ], "coaches": [ 4 @@ -26784,43 +31082,43 @@ export default { 4 ], "id": [ - 3320 + 3589 ], "invite_code": [ - 65 + 66 ], "knife_round": [ 4 ], "live_match_timeout": [ - 35 + 36 ], "lobby_access": [ - 332 + 574 ], "map_pool": [ - 1039 + 1281 ], "map_pool_id": [ - 3320 + 3589 ], "map_veto": [ 4 ], "match_mode": [ - 435 + 677 ], "matches": [ - 1587 + 1829 ], "matches_aggregate": [ - 1580 + 1822 ], "mr": [ - 35 + 36 ], "number_of_substitutes": [ - 35 + 36 ], "overtime": [ 4 @@ -26829,75 +31127,75 @@ export default { 4 ], "ready_setting": [ - 557 + 799 ], "region_veto": [ 4 ], "regions": [ - 64 + 65 ], "tech_timeout_setting": [ - 679 + 921 ], "timeout_setting": [ - 679 + 921 ], "tournament": [ - 3284 + 3553 ], "tournament_bracket": [ - 2935 + 3204 ], "tournament_stage": [ - 3023 + 3292 ], "tv_delay": [ - 35 + 36 ], "type": [ - 476 + 718 ], "__typename": [ - 63 + 64 ] }, "match_options_constraint": {}, "match_options_inc_input": { "auto_cancel_duration": [ - 34 + 35 ], "best_of": [ - 34 + 35 ], "live_match_timeout": [ - 34 + 35 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "tv_delay": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_options_insert_input": { "auto_cancel_duration": [ - 34 + 35 ], "auto_cancellation": [ 3 ], "best_of": [ - 34 + 35 ], "check_in_setting": [ - 249 + 386 ], "coaches": [ 3 @@ -26906,40 +31204,40 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "knife_round": [ 3 ], "live_match_timeout": [ - 34 + 35 ], "lobby_access": [ - 331 + 573 ], "map_pool": [ - 1045 + 1287 ], "map_pool_id": [ - 3319 + 3588 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 676 ], "matches": [ - 1584 + 1826 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "overtime": [ 3 @@ -26948,264 +31246,264 @@ export default { 3 ], "ready_setting": [ - 556 + 798 ], "region_veto": [ 3 ], "regions": [ - 63 + 64 ], "tech_timeout_setting": [ - 678 + 920 ], "timeout_setting": [ - 678 + 920 ], "tournament": [ - 3293 + 3562 ], "tournament_bracket": [ - 2944 + 3213 ], "tournament_stage": [ - 3035 + 3304 ], "tv_delay": [ - 34 + 35 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "match_options_max_fields": { "auto_cancel_duration": [ - 34 + 35 ], "best_of": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "live_match_timeout": [ - 34 + 35 ], "map_pool_id": [ - 3319 + 3588 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "regions": [ - 63 + 64 ], "tv_delay": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_options_min_fields": { "auto_cancel_duration": [ - 34 + 35 ], "best_of": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "live_match_timeout": [ - 34 + 35 ], "map_pool_id": [ - 3319 + 3588 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "regions": [ - 63 + 64 ], "tv_delay": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_options_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1458 + 1700 ], "__typename": [ - 63 + 64 ] }, "match_options_obj_rel_insert_input": { "data": [ - 1465 + 1707 ], "on_conflict": [ - 1470 + 1712 ], "__typename": [ - 63 + 64 ] }, "match_options_on_conflict": { "constraint": [ - 1463 + 1705 ], "update_columns": [ - 1481 + 1723 ], "where": [ - 1462 + 1704 ], "__typename": [ - 63 + 64 ] }, "match_options_order_by": { "auto_cancel_duration": [ - 1736 + 2005 ], "auto_cancellation": [ - 1736 + 2005 ], "best_of": [ - 1736 + 2005 ], "check_in_setting": [ - 1736 + 2005 ], "coaches": [ - 1736 + 2005 ], "default_models": [ - 1736 + 2005 ], "has_active_matches": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invite_code": [ - 1736 + 2005 ], "knife_round": [ - 1736 + 2005 ], "live_match_timeout": [ - 1736 + 2005 ], "lobby_access": [ - 1736 + 2005 ], "map_pool": [ - 1047 + 1289 ], "map_pool_id": [ - 1736 + 2005 ], "map_veto": [ - 1736 + 2005 ], "match_mode": [ - 1736 + 2005 ], "matches_aggregate": [ - 1583 + 1825 ], "mr": [ - 1736 + 2005 ], "number_of_substitutes": [ - 1736 + 2005 ], "overtime": [ - 1736 + 2005 ], "prefer_dedicated_server": [ - 1736 + 2005 ], "ready_setting": [ - 1736 + 2005 ], "region_veto": [ - 1736 + 2005 ], "regions": [ - 1736 + 2005 ], "tech_timeout_setting": [ - 1736 + 2005 ], "timeout_setting": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_bracket": [ - 2946 + 3215 ], "tournament_stage": [ - 3037 + 3306 ], "tv_delay": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_options_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_options_select_column": {}, "match_options_set_input": { "auto_cancel_duration": [ - 34 + 35 ], "auto_cancellation": [ 3 ], "best_of": [ - 34 + 35 ], "check_in_setting": [ - 249 + 386 ], "coaches": [ 3 @@ -27214,34 +31512,34 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "knife_round": [ 3 ], "live_match_timeout": [ - 34 + 35 ], "lobby_access": [ - 331 + 573 ], "map_pool_id": [ - 3319 + 3588 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 676 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "overtime": [ 3 @@ -27250,122 +31548,122 @@ export default { 3 ], "ready_setting": [ - 556 + 798 ], "region_veto": [ 3 ], "regions": [ - 63 + 64 ], "tech_timeout_setting": [ - 678 + 920 ], "timeout_setting": [ - 678 + 920 ], "tv_delay": [ - 34 + 35 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "match_options_stddev_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_stddev_pop_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_stddev_samp_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_stream_cursor_input": { "initial_value": [ - 1479 + 1721 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_options_stream_cursor_value_input": { "auto_cancel_duration": [ - 34 + 35 ], "auto_cancellation": [ 3 ], "best_of": [ - 34 + 35 ], "check_in_setting": [ - 249 + 386 ], "coaches": [ 3 @@ -27374,34 +31672,34 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "knife_round": [ 3 ], "live_match_timeout": [ - 34 + 35 ], "lobby_access": [ - 331 + 573 ], "map_pool_id": [ - 3319 + 3588 ], "map_veto": [ 3 ], "match_mode": [ - 434 + 676 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "overtime": [ 3 @@ -27410,208 +31708,208 @@ export default { 3 ], "ready_setting": [ - 556 + 798 ], "region_veto": [ 3 ], "regions": [ - 63 + 64 ], "tech_timeout_setting": [ - 678 + 920 ], "timeout_setting": [ - 678 + 920 ], "tv_delay": [ - 34 + 35 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "match_options_sum_fields": { "auto_cancel_duration": [ - 34 + 35 ], "best_of": [ - 34 + 35 ], "live_match_timeout": [ - 34 + 35 ], "mr": [ - 34 + 35 ], "number_of_substitutes": [ - 34 + 35 ], "tv_delay": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_options_update_column": {}, "match_options_updates": { "_inc": [ - 1464 + 1706 ], "_set": [ - 1474 + 1716 ], "where": [ - 1462 + 1704 ], "__typename": [ - 63 + 64 ] }, "match_options_var_pop_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_var_samp_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_options_variance_fields": { "auto_cancel_duration": [ - 25 + 26 ], "best_of": [ - 25 + 26 ], "live_match_timeout": [ - 25 + 26 ], "mr": [ - 25 + 26 ], "number_of_substitutes": [ - 25 + 26 ], "tv_delay": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_aggregate": { "aggregate": [ - 1490 + 1732 ], "nodes": [ - 1486 + 1728 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_aggregate_bool_exp": { "count": [ - 1489 + 1731 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_aggregate_bool_exp_count": { "arguments": [ - 1504 + 1746 ], "distinct": [ 3 ], "filter": [ - 1493 + 1735 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 1504, + 1746, "[match_region_veto_picks_select_column!]" ], "distinct": [ @@ -27620,318 +31918,318 @@ export default { } ], "max": [ - 1496 + 1738 ], "min": [ - 1498 + 1740 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_aggregate_order_by": { "count": [ - 1736 + 2005 ], "max": [ - 1497 + 1739 ], "min": [ - 1499 + 1741 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_arr_rel_insert_input": { "data": [ - 1495 + 1737 ], "on_conflict": [ - 1501 + 1743 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_bool_exp": { "_and": [ - 1493 + 1735 ], "_not": [ - 1493 + 1735 ], "_or": [ - 1493 + 1735 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "region": [ - 65 + 66 ], "type": [ - 761 + 1003 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_constraint": {}, "match_region_veto_picks_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1486 + 1728 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_on_conflict": { "constraint": [ - 1494 + 1736 ], "update_columns": [ - 1508 + 1750 ], "where": [ - 1493 + 1735 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_select_column": {}, "match_region_veto_picks_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_stream_cursor_input": { "initial_value": [ - 1507 + 1749 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "region": [ - 63 + 64 ], "type": [ - 760 + 1002 ], "__typename": [ - 63 + 64 ] }, "match_region_veto_picks_update_column": {}, "match_region_veto_picks_updates": { "_set": [ - 1505 + 1747 ], "where": [ - 1493 + 1735 ], "__typename": [ - 63 + 64 ] }, "match_streams": { @@ -27939,16 +32237,16 @@ export default { 3 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 824 + 1066 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_game_streamer": [ 3 @@ -27957,132 +32255,132 @@ export default { 3 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "status_history": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate": { "aggregate": [ - 1516 + 1758 ], "nodes": [ - 1510 + 1752 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_bool_exp": { "bool_and": [ - 1513 + 1755 ], "bool_or": [ - 1514 + 1756 ], "count": [ - 1515 + 1757 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_bool_exp_bool_and": { "arguments": [ - 1539 + 1781 ], "distinct": [ 3 ], "filter": [ - 1522 + 1764 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_bool_exp_bool_or": { "arguments": [ - 1540 + 1782 ], "distinct": [ 3 ], "filter": [ - 1522 + 1764 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_bool_exp_count": { "arguments": [ - 1538 + 1780 ], "distinct": [ 3 ], "filter": [ - 1522 + 1764 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_fields": { "avg": [ - 1520 + 1762 ], "count": [ - 34, + 35, { "columns": [ - 1538, + 1780, "[match_streams_select_column!]" ], "distinct": [ @@ -28091,133 +32389,133 @@ export default { } ], "max": [ - 1529 + 1771 ], "min": [ - 1531 + 1773 ], "stddev": [ - 1542 + 1784 ], "stddev_pop": [ - 1544 + 1786 ], "stddev_samp": [ - 1546 + 1788 ], "sum": [ - 1550 + 1792 ], "var_pop": [ - 1554 + 1796 ], "var_samp": [ - 1556 + 1798 ], "variance": [ - 1558 + 1800 ], "__typename": [ - 63 + 64 ] }, "match_streams_aggregate_order_by": { "avg": [ - 1521 + 1763 ], "count": [ - 1736 + 2005 ], "max": [ - 1530 + 1772 ], "min": [ - 1532 + 1774 ], "stddev": [ - 1543 + 1785 ], "stddev_pop": [ - 1545 + 1787 ], "stddev_samp": [ - 1547 + 1789 ], "sum": [ - 1551 + 1793 ], "var_pop": [ - 1555 + 1797 ], "var_samp": [ - 1557 + 1799 ], "variance": [ - 1559 + 1801 ], "__typename": [ - 63 + 64 ] }, "match_streams_append_input": { "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_streams_arr_rel_insert_input": { "data": [ - 1528 + 1770 ], "on_conflict": [ - 1534 + 1776 ], "__typename": [ - 63 + 64 ] }, "match_streams_avg_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_avg_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_bool_exp": { "_and": [ - 1522 + 1764 ], "_not": [ - 1522 + 1764 ], "_or": [ - 1522 + 1764 ], "autodirector": [ 4 ], "error_message": [ - 65 + 66 ], "game_server_node": [ - 836 + 1078 ], "game_server_node_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "is_game_streamer": [ 4 @@ -28226,73 +32524,73 @@ export default { 4 ], "k8s_service_name": [ - 65 + 66 ], "last_status_at": [ - 2923 + 3192 ], "link": [ - 65 + 66 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "mode": [ - 65 + 66 ], "priority": [ - 35 + 36 ], "status": [ - 65 + 66 ], "status_history": [ - 948 + 1190 ], "stream_url": [ - 65 + 66 ], "title": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "match_streams_constraint": {}, "match_streams_delete_at_path_input": { "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_delete_elem_input": { "status_history": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_streams_delete_key_input": { "status_history": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_inc_input": { "priority": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_streams_insert_input": { @@ -28300,16 +32598,16 @@ export default { 3 ], "error_message": [ - 63 + 64 ], "game_server_node": [ - 848 + 1090 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_game_streamer": [ 3 @@ -28318,304 +32616,304 @@ export default { 3 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_max_fields": { "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_max_order_by": { "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_service_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "link": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "mode": [ - 1736 + 2005 ], "priority": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_min_fields": { "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_min_order_by": { "error_message": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_service_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "link": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "mode": [ - 1736 + 2005 ], "priority": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1510 + 1752 ], "__typename": [ - 63 + 64 ] }, "match_streams_on_conflict": { "constraint": [ - 1523 + 1765 ], "update_columns": [ - 1552 + 1794 ], "where": [ - 1522 + 1764 ], "__typename": [ - 63 + 64 ] }, "match_streams_order_by": { "autodirector": [ - 1736 + 2005 ], "error_message": [ - 1736 + 2005 ], "game_server_node": [ - 850 + 1092 ], "game_server_node_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "is_game_streamer": [ - 1736 + 2005 ], "is_live": [ - 1736 + 2005 ], "k8s_service_name": [ - 1736 + 2005 ], "last_status_at": [ - 1736 + 2005 ], "link": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "mode": [ - 1736 + 2005 ], "priority": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "status_history": [ - 1736 + 2005 ], "stream_url": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "match_streams_prepend_input": { "status_history": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "match_streams_select_column": {}, @@ -28626,13 +32924,13 @@ export default { 3 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_game_streamer": [ 3 @@ -28641,96 +32939,96 @@ export default { 3 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_pop_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_pop_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_samp_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_stddev_samp_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_stream_cursor_input": { "initial_value": [ - 1549 + 1791 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_streams_stream_cursor_value_input": { @@ -28738,13 +33036,13 @@ export default { 3 ], "error_message": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_game_streamer": [ 3 @@ -28753,161 +33051,161 @@ export default { 3 ], "k8s_service_name": [ - 63 + 64 ], "last_status_at": [ - 2922 + 3191 ], "link": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "mode": [ - 63 + 64 ], "priority": [ - 34 + 35 ], "status": [ - 63 + 64 ], "status_history": [ - 946 + 1188 ], "stream_url": [ - 63 + 64 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_streams_sum_fields": { "priority": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "match_streams_sum_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_update_column": {}, "match_streams_updates": { "_append": [ - 1518 + 1760 ], "_delete_at_path": [ - 1524 + 1766 ], "_delete_elem": [ - 1525 + 1767 ], "_delete_key": [ - 1526 + 1768 ], "_inc": [ - 1527 + 1769 ], "_prepend": [ - 1537 + 1779 ], "_set": [ - 1541 + 1783 ], "where": [ - 1522 + 1764 ], "__typename": [ - 63 + 64 ] }, "match_streams_var_pop_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_var_pop_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_var_samp_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_var_samp_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_streams_variance_fields": { "priority": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "match_streams_variance_order_by": { "priority": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs": { "cfg": [ - 63 + 64 ], "type": [ - 290 + 532 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_aggregate": { "aggregate": [ - 1562 + 1804 ], "nodes": [ - 1560 + 1802 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 1572, + 1814, "[match_type_cfgs_select_column!]" ], "distinct": [ @@ -28916,151 +33214,151 @@ export default { } ], "max": [ - 1566 + 1808 ], "min": [ - 1567 + 1809 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_bool_exp": { "_and": [ - 1563 + 1805 ], "_not": [ - 1563 + 1805 ], "_or": [ - 1563 + 1805 ], "cfg": [ - 65 + 66 ], "type": [ - 291 + 533 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_constraint": {}, "match_type_cfgs_insert_input": { "cfg": [ - 63 + 64 ], "type": [ - 290 + 532 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_max_fields": { "cfg": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_min_fields": { "cfg": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1560 + 1802 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_on_conflict": { "constraint": [ - 1564 + 1806 ], "update_columns": [ - 1576 + 1818 ], "where": [ - 1563 + 1805 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_order_by": { "cfg": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_pk_columns_input": { "type": [ - 290 + 532 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_select_column": {}, "match_type_cfgs_set_input": { "cfg": [ - 63 + 64 ], "type": [ - 290 + 532 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_stream_cursor_input": { "initial_value": [ - 1575 + 1817 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_stream_cursor_value_input": { "cfg": [ - 63 + 64 ], "type": [ - 290 + 532 ], "__typename": [ - 63 + 64 ] }, "match_type_cfgs_update_column": {}, "match_type_cfgs_updates": { "_set": [ - 1573 + 1815 ], "where": [ - 1563 + 1805 ], "__typename": [ - 63 + 64 ] }, "matches": { @@ -29089,214 +33387,258 @@ export default { 3 ], "cancels_at": [ - 2922 + 3191 ], "clutches": [ - 3363, + 3632, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "clutches_aggregate": [ - 3364, + 3633, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "connection_link": [ - 63 + 64 ], "connection_string": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "current_match_map_id": [ - 3319 + 3588 ], "demos": [ - 1300, + 1542, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "demos_aggregate": [ - 1301, + 1543, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 + ] + } + ], + "draft_games": [ + 335, + { + "distinct_on": [ + 359, + "[draft_games_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 + ] + } + ], + "draft_games_aggregate": [ + 336, + { + "distinct_on": [ + 359, + "[draft_games_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 ] } ], "e_match_status": [ - 449 + 691 ], "e_region": [ - 2659 + 2928 ], "effective_at": [ - 2922 + 3191 ], "elo_changes": [ - 3560, + 3829, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "elo_changes_aggregate": [ - 3561, + 3830, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "ended_at": [ - 2922 + 3191 ], "external_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "invite_code": [ - 63 + 64 ], "invites": [ - 1172, + 1414, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], "invites_aggregate": [ - 1173, + 1415, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], @@ -29325,1008 +33667,1508 @@ export default { 3 ], "label": [ - 63 + 64 ], "lineup_1": [ - 1258 + 1500 ], "lineup_1_id": [ - 3319 + 3588 ], "lineup_2": [ - 1258 + 1500 ], "lineup_2_id": [ - 3319 + 3588 ], "lineup_counts": [ - 944, + 1186, { "path": [ - 63 + 64 ] } ], "map_veto_picking_lineup_id": [ - 3319 + 3588 ], "map_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "map_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "map_veto_type": [ - 63 + 64 ], "match_maps": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 + ] + } + ], + "match_maps_aggregate": [ + 1659, + { + "distinct_on": [ + 1680, + "[match_maps_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1678, + "[match_maps_order_by!]" + ], + "where": [ + 1667 + ] + } + ], + "match_options_id": [ + 3588 + ], + "max_players_per_lineup": [ + 35 + ], + "min_players_per_lineup": [ + 35 + ], + "opening_duels": [ + 3760, + { + "distinct_on": [ + 3776, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 3775, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 3769 + ] + } + ], + "opening_duels_aggregate": [ + 3761, + { + "distinct_on": [ + 3776, + "[v_match_player_opening_duels_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 3775, + "[v_match_player_opening_duels_order_by!]" + ], + "where": [ + 3769 + ] + } + ], + "options": [ + 1700 + ], + "organizer": [ + 2872 + ], + "organizer_steam_id": [ + 163 + ], + "password": [ + 64 + ], + "player_assists": [ + 2143, + { + "distinct_on": [ + 2166, + "[player_assists_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2164, + "[player_assists_order_by!]" + ], + "where": [ + 2154 + ] + } + ], + "player_assists_aggregate": [ + 2144, + { + "distinct_on": [ + 2166, + "[player_assists_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2164, + "[player_assists_order_by!]" + ], + "where": [ + 2154 + ] + } + ], + "player_damages": [ + 2206, + { + "distinct_on": [ + 2227, + "[player_damages_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2225, + "[player_damages_order_by!]" + ], + "where": [ + 2215 + ] + } + ], + "player_damages_aggregate": [ + 2207, + { + "distinct_on": [ + 2227, + "[player_damages_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2225, + "[player_damages_order_by!]" + ], + "where": [ + 2215 + ] + } + ], + "player_flashes": [ + 2315, + { + "distinct_on": [ + 2338, + "[player_flashes_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2336, + "[player_flashes_order_by!]" + ], + "where": [ + 2326 + ] + } + ], + "player_flashes_aggregate": [ + 2316, + { + "distinct_on": [ + 2338, + "[player_flashes_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 2336, + "[player_flashes_order_by!]" + ], + "where": [ + 2326 ] } ], - "match_maps_aggregate": [ - 1417, + "player_kills": [ + 2360, { "distinct_on": [ - 1438, - "[match_maps_select_column!]" + 2424, + "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, - "[match_maps_order_by!]" + 2422, + "[player_kills_order_by!]" ], "where": [ - 1425 + 2371 ] } ], - "match_options_id": [ - 3319 - ], - "max_players_per_lineup": [ - 34 - ], - "min_players_per_lineup": [ - 34 - ], - "opening_duels": [ - 3491, + "player_kills_aggregate": [ + 2361, { "distinct_on": [ - 3507, - "[v_match_player_opening_duels_select_column!]" + 2424, + "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, - "[v_match_player_opening_duels_order_by!]" + 2422, + "[player_kills_order_by!]" ], "where": [ - 3500 + 2371 ] } ], - "opening_duels_aggregate": [ - 3492, + "player_objectives": [ + 2561, { "distinct_on": [ - 3507, - "[v_match_player_opening_duels_select_column!]" + 2582, + "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, - "[v_match_player_opening_duels_order_by!]" + 2580, + "[player_objectives_order_by!]" ], "where": [ - 3500 + 2570 ] } ], - "options": [ - 1458 - ], - "organizer": [ - 2603 - ], - "organizer_steam_id": [ - 162 - ], - "password": [ - 63 - ], - "player_assists": [ - 1874, + "player_objectives_aggregate": [ + 2562, { "distinct_on": [ - 1897, - "[player_assists_select_column!]" + 2582, + "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, - "[player_assists_order_by!]" + 2580, + "[player_objectives_order_by!]" ], "where": [ - 1885 + 2570 ] } ], - "player_assists_aggregate": [ - 1875, + "player_unused_utilities": [ + 2757, { "distinct_on": [ - 1897, - "[player_assists_select_column!]" + 2778, + "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, - "[player_assists_order_by!]" + 2776, + "[player_unused_utility_order_by!]" ], "where": [ - 1885 + 2766 ] } ], - "player_damages": [ - 1937, + "player_unused_utilities_aggregate": [ + 2758, { "distinct_on": [ - 1958, - "[player_damages_select_column!]" + 2778, + "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, - "[player_damages_order_by!]" + 2776, + "[player_unused_utility_order_by!]" ], "where": [ - 1946 + 2766 ] } ], - "player_damages_aggregate": [ - 1938, + "player_utility": [ + 2798, { "distinct_on": [ - 1958, - "[player_damages_select_column!]" + 2819, + "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, - "[player_damages_order_by!]" + 2817, + "[player_utility_order_by!]" ], "where": [ - 1946 + 2807 ] } ], - "player_flashes": [ - 2046, + "player_utility_aggregate": [ + 2799, { "distinct_on": [ - 2069, - "[player_flashes_select_column!]" + 2819, + "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, - "[player_flashes_order_by!]" + 2817, + "[player_utility_order_by!]" ], "where": [ - 2057 + 2807 ] } ], - "player_flashes_aggregate": [ - 2047, + "region": [ + 64 + ], + "region_veto_picking_lineup_id": [ + 3588 + ], + "region_veto_picks": [ + 1728, { "distinct_on": [ - 2069, - "[player_flashes_select_column!]" + 1746, + "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, - "[player_flashes_order_by!]" + 1744, + "[match_region_veto_picks_order_by!]" ], "where": [ - 2057 + 1735 ] } ], - "player_kills": [ - 2091, + "region_veto_picks_aggregate": [ + 1729, { "distinct_on": [ - 2155, - "[player_kills_select_column!]" + 1746, + "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, - "[player_kills_order_by!]" + 1744, + "[match_region_veto_picks_order_by!]" ], "where": [ - 2102 + 1735 ] } ], - "player_kills_aggregate": [ - 2092, + "requested_organizer": [ + 3 + ], + "scheduled_at": [ + 3191 + ], + "server": [ + 2955 + ], + "server_error": [ + 64 + ], + "server_id": [ + 3588 + ], + "server_region": [ + 64 + ], + "server_type": [ + 64 + ], + "source": [ + 64 + ], + "started_at": [ + 3191 + ], + "status": [ + 696 + ], + "streams": [ + 1752, { "distinct_on": [ - 2155, - "[player_kills_select_column!]" + 1780, + "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, - "[player_kills_order_by!]" + 1777, + "[match_streams_order_by!]" ], "where": [ - 2102 + 1764 ] } ], - "player_objectives": [ - 2292, + "streams_aggregate": [ + 1753, { "distinct_on": [ - 2313, - "[player_objectives_select_column!]" + 1780, + "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, - "[player_objectives_order_by!]" + 1777, + "[match_streams_order_by!]" ], "where": [ - 2301 + 1764 ] } ], - "player_objectives_aggregate": [ - 2293, + "teams": [ + 3148, { "distinct_on": [ - 2313, - "[player_objectives_select_column!]" + 3170, + "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, - "[player_objectives_order_by!]" + 3168, + "[teams_order_by!]" ], "where": [ - 2301 + 3157 ] } ], - "player_unused_utilities": [ - 2488, + "tournament_brackets": [ + 3193, { "distinct_on": [ - 2509, - "[player_unused_utility_select_column!]" + 3217, + "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, - "[player_unused_utility_order_by!]" + 3215, + "[tournament_brackets_order_by!]" ], "where": [ - 2497 + 3204 ] } ], - "player_unused_utilities_aggregate": [ - 2489, + "tournament_brackets_aggregate": [ + 3194, { "distinct_on": [ - 2509, - "[player_unused_utility_select_column!]" + 3217, + "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, - "[player_unused_utility_order_by!]" + 3215, + "[tournament_brackets_order_by!]" ], "where": [ - 2497 + 3204 + ] + } + ], + "tv_connection_string": [ + 64 + ], + "winner": [ + 1500 + ], + "winning_lineup_id": [ + 3588 + ], + "__typename": [ + 64 + ] + }, + "matches_aggregate": { + "aggregate": [ + 1824 + ], + "nodes": [ + 1820 + ], + "__typename": [ + 64 + ] + }, + "matches_aggregate_bool_exp": { + "count": [ + 1823 + ], + "__typename": [ + 64 + ] + }, + "matches_aggregate_bool_exp_count": { + "arguments": [ + 1842 + ], + "distinct": [ + 3 + ], + "filter": [ + 1829 + ], + "predicate": [ + 36 + ], + "__typename": [ + 64 + ] + }, + "matches_aggregate_fields": { + "avg": [ + 1827 + ], + "count": [ + 35, + { + "columns": [ + 1842, + "[matches_select_column!]" + ], + "distinct": [ + 3 ] } ], + "max": [ + 1833 + ], + "min": [ + 1835 + ], + "stddev": [ + 1844 + ], + "stddev_pop": [ + 1846 + ], + "stddev_samp": [ + 1848 + ], + "sum": [ + 1852 + ], + "var_pop": [ + 1856 + ], + "var_samp": [ + 1858 + ], + "variance": [ + 1860 + ], + "__typename": [ + 64 + ] + }, + "matches_aggregate_order_by": { + "avg": [ + 1828 + ], + "count": [ + 2005 + ], + "max": [ + 1834 + ], + "min": [ + 1836 + ], + "stddev": [ + 1845 + ], + "stddev_pop": [ + 1847 + ], + "stddev_samp": [ + 1849 + ], + "sum": [ + 1853 + ], + "var_pop": [ + 1857 + ], + "var_samp": [ + 1859 + ], + "variance": [ + 1861 + ], + "__typename": [ + 64 + ] + }, + "matches_arr_rel_insert_input": { + "data": [ + 1832 + ], + "on_conflict": [ + 1839 + ], + "__typename": [ + 64 + ] + }, + "matches_avg_fields": { + "max_players_per_lineup": [ + 35 + ], + "min_players_per_lineup": [ + 35 + ], + "organizer_steam_id": [ + 26 + ], + "__typename": [ + 64 + ] + }, + "matches_avg_order_by": { + "organizer_steam_id": [ + 2005 + ], + "__typename": [ + 64 + ] + }, + "matches_bool_exp": { + "_and": [ + 1829 + ], + "_not": [ + 1829 + ], + "_or": [ + 1829 + ], + "can_assign_server": [ + 4 + ], + "can_cancel": [ + 4 + ], + "can_check_in": [ + 4 + ], + "can_reassign_winner": [ + 4 + ], + "can_schedule": [ + 4 + ], + "can_start": [ + 4 + ], + "can_stream_live": [ + 4 + ], + "can_stream_tv": [ + 4 + ], + "cancels_at": [ + 3192 + ], + "clutches": [ + 3641 + ], + "clutches_aggregate": [ + 3634 + ], + "connection_link": [ + 66 + ], + "connection_string": [ + 66 + ], + "created_at": [ + 3192 + ], + "current_match_map_id": [ + 3589 + ], + "demos": [ + 1554 + ], + "demos_aggregate": [ + 1544 + ], + "draft_games": [ + 346 + ], + "draft_games_aggregate": [ + 337 + ], + "e_match_status": [ + 694 + ], + "e_region": [ + 2932 + ], + "effective_at": [ + 3192 + ], + "elo_changes": [ + 3848 + ], + "elo_changes_aggregate": [ + 3831 + ], + "ended_at": [ + 3192 + ], + "external_id": [ + 66 + ], + "id": [ + 3589 + ], + "invite_code": [ + 66 + ], + "invites": [ + 1423 + ], + "invites_aggregate": [ + 1416 + ], + "is_captain": [ + 4 + ], + "is_coach": [ + 4 + ], + "is_friend_in_match_lineup": [ + 4 + ], + "is_in_lineup": [ + 4 + ], + "is_match_server_available": [ + 4 + ], + "is_organizer": [ + 4 + ], + "is_server_online": [ + 4 + ], + "is_tournament_match": [ + 4 + ], + "label": [ + 66 + ], + "lineup_1": [ + 1509 + ], + "lineup_1_id": [ + 3589 + ], + "lineup_2": [ + 1509 + ], + "lineup_2_id": [ + 3589 + ], + "lineup_counts": [ + 1187 + ], + "map_veto_picking_lineup_id": [ + 3589 + ], + "map_veto_picks": [ + 1641 + ], + "map_veto_picks_aggregate": [ + 1636 + ], + "map_veto_type": [ + 66 + ], + "match_maps": [ + 1667 + ], + "match_maps_aggregate": [ + 1660 + ], + "match_options_id": [ + 3589 + ], + "max_players_per_lineup": [ + 36 + ], + "min_players_per_lineup": [ + 36 + ], + "opening_duels": [ + 3769 + ], + "opening_duels_aggregate": [ + 3762 + ], + "options": [ + 1704 + ], + "organizer": [ + 2876 + ], + "organizer_steam_id": [ + 164 + ], + "password": [ + 66 + ], + "player_assists": [ + 2154 + ], + "player_assists_aggregate": [ + 2145 + ], + "player_damages": [ + 2215 + ], + "player_damages_aggregate": [ + 2208 + ], + "player_flashes": [ + 2326 + ], + "player_flashes_aggregate": [ + 2317 + ], + "player_kills": [ + 2371 + ], + "player_kills_aggregate": [ + 2362 + ], + "player_objectives": [ + 2570 + ], + "player_objectives_aggregate": [ + 2563 + ], + "player_unused_utilities": [ + 2766 + ], + "player_unused_utilities_aggregate": [ + 2759 + ], "player_utility": [ - 2529, - { - "distinct_on": [ - 2550, - "[player_utility_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 2548, - "[player_utility_order_by!]" - ], - "where": [ - 2538 - ] - } + 2807 ], "player_utility_aggregate": [ - 2530, - { - "distinct_on": [ - 2550, - "[player_utility_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 2548, - "[player_utility_order_by!]" - ], - "where": [ - 2538 - ] - } + 2800 ], "region": [ - 63 + 66 ], "region_veto_picking_lineup_id": [ - 3319 + 3589 ], "region_veto_picks": [ - 1486, - { - "distinct_on": [ - 1504, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1502, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 1493 - ] - } + 1735 ], "region_veto_picks_aggregate": [ - 1487, - { - "distinct_on": [ - 1504, - "[match_region_veto_picks_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1502, - "[match_region_veto_picks_order_by!]" - ], - "where": [ - 1493 - ] - } + 1730 ], "requested_organizer": [ - 3 + 4 ], "scheduled_at": [ - 2922 + 3192 ], "server": [ - 2686 + 2966 ], "server_error": [ - 63 + 66 ], "server_id": [ - 3319 + 3589 ], "server_region": [ - 63 + 66 ], "server_type": [ - 63 + 66 ], "source": [ - 63 + 66 ], "started_at": [ - 2922 + 3192 ], "status": [ - 454 + 697 ], "streams": [ - 1510, - { - "distinct_on": [ - 1538, - "[match_streams_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1535, - "[match_streams_order_by!]" - ], - "where": [ - 1522 - ] - } + 1764 ], "streams_aggregate": [ - 1511, - { - "distinct_on": [ - 1538, - "[match_streams_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 1535, - "[match_streams_order_by!]" - ], - "where": [ - 1522 - ] - } + 1754 ], "teams": [ - 2879, - { - "distinct_on": [ - 2901, - "[teams_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 2899, - "[teams_order_by!]" - ], - "where": [ - 2888 - ] - } + 3157 ], "tournament_brackets": [ - 2924, - { - "distinct_on": [ - 2948, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 2946, - "[tournament_brackets_order_by!]" - ], - "where": [ - 2935 - ] - } + 3204 ], "tournament_brackets_aggregate": [ - 2925, - { - "distinct_on": [ - 2948, - "[tournament_brackets_select_column!]" - ], - "limit": [ - 34 - ], - "offset": [ - 34 - ], - "order_by": [ - 2946, - "[tournament_brackets_order_by!]" - ], - "where": [ - 2935 - ] - } + 3195 ], "tv_connection_string": [ - 63 + 66 ], "winner": [ - 1258 + 1509 ], "winning_lineup_id": [ - 3319 + 3589 ], "__typename": [ - 63 + 64 ] }, - "matches_aggregate": { - "aggregate": [ - 1582 - ], - "nodes": [ - 1578 + "matches_constraint": {}, + "matches_inc_input": { + "organizer_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "matches_aggregate_bool_exp": { - "count": [ - 1581 + "matches_insert_input": { + "cancels_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "matches_aggregate_bool_exp_count": { - "arguments": [ - 1600 + "clutches": [ + 3638 ], - "distinct": [ - 3 + "created_at": [ + 3191 ], - "filter": [ - 1587 + "demos": [ + 1551 ], - "predicate": [ - 35 + "draft_games": [ + 343 ], - "__typename": [ - 63 - ] - }, - "matches_aggregate_fields": { - "avg": [ - 1585 + "e_match_status": [ + 702 ], - "count": [ - 34, - { - "columns": [ - 1600, - "[matches_select_column!]" - ], - "distinct": [ - 3 - ] - } + "e_region": [ + 2938 ], - "max": [ - 1591 + "elo_changes": [ + 3845 ], - "min": [ - 1593 + "ended_at": [ + 3191 ], - "stddev": [ - 1602 + "external_id": [ + 64 ], - "stddev_pop": [ - 1604 + "id": [ + 3588 ], - "stddev_samp": [ - 1606 + "invites": [ + 1420 ], - "sum": [ - 1610 + "label": [ + 64 ], - "var_pop": [ - 1614 + "lineup_1": [ + 1518 ], - "var_samp": [ - 1616 + "lineup_1_id": [ + 3588 ], - "variance": [ - 1618 + "lineup_2": [ + 1518 ], - "__typename": [ - 63 - ] - }, - "matches_aggregate_order_by": { - "avg": [ - 1586 + "lineup_2_id": [ + 3588 ], - "count": [ - 1736 + "map_veto_picks": [ + 1640 ], - "max": [ - 1592 + "match_maps": [ + 1664 ], - "min": [ - 1594 + "match_options_id": [ + 3588 ], - "stddev": [ - 1603 + "opening_duels": [ + 3766 ], - "stddev_pop": [ - 1605 + "options": [ + 1711 ], - "stddev_samp": [ - 1607 + "organizer": [ + 2883 ], - "sum": [ - 1611 + "organizer_steam_id": [ + 163 ], - "var_pop": [ - 1615 + "password": [ + 64 ], - "var_samp": [ - 1617 + "player_assists": [ + 2151 ], - "variance": [ - 1619 + "player_damages": [ + 2212 ], - "__typename": [ - 63 - ] - }, - "matches_arr_rel_insert_input": { - "data": [ - 1590 + "player_flashes": [ + 2323 ], - "on_conflict": [ - 1597 + "player_kills": [ + 2368 + ], + "player_objectives": [ + 2567 + ], + "player_unused_utilities": [ + 2763 + ], + "player_utility": [ + 2804 + ], + "region": [ + 64 + ], + "region_veto_picks": [ + 1734 + ], + "scheduled_at": [ + 3191 + ], + "server": [ + 2975 + ], + "server_error": [ + 64 + ], + "server_id": [ + 3588 + ], + "source": [ + 64 + ], + "started_at": [ + 3191 + ], + "status": [ + 696 + ], + "streams": [ + 1761 + ], + "tournament_brackets": [ + 3201 + ], + "winner": [ + 1518 + ], + "winning_lineup_id": [ + 3588 ], "__typename": [ - 63 + 64 ] }, - "matches_avg_fields": { + "matches_max_fields": { + "cancels_at": [ + 3191 + ], + "connection_link": [ + 64 + ], + "connection_string": [ + 64 + ], + "created_at": [ + 3191 + ], + "current_match_map_id": [ + 3588 + ], + "effective_at": [ + 3191 + ], + "ended_at": [ + 3191 + ], + "external_id": [ + 64 + ], + "id": [ + 3588 + ], + "invite_code": [ + 64 + ], + "label": [ + 64 + ], + "lineup_1_id": [ + 3588 + ], + "lineup_2_id": [ + 3588 + ], + "map_veto_picking_lineup_id": [ + 3588 + ], + "map_veto_type": [ + 64 + ], + "match_options_id": [ + 3588 + ], "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 163 ], - "__typename": [ - 63 - ] - }, - "matches_avg_order_by": { - "organizer_steam_id": [ - 1736 + "password": [ + 64 + ], + "region": [ + 64 + ], + "region_veto_picking_lineup_id": [ + 3588 + ], + "scheduled_at": [ + 3191 + ], + "server_error": [ + 64 + ], + "server_id": [ + 3588 + ], + "server_region": [ + 64 + ], + "server_type": [ + 64 + ], + "source": [ + 64 + ], + "started_at": [ + 3191 + ], + "tv_connection_string": [ + 64 + ], + "winning_lineup_id": [ + 3588 ], "__typename": [ - 63 + 64 ] }, - "matches_bool_exp": { - "_and": [ - 1587 + "matches_max_order_by": { + "cancels_at": [ + 2005 ], - "_not": [ - 1587 + "created_at": [ + 2005 ], - "_or": [ - 1587 + "effective_at": [ + 2005 ], - "can_assign_server": [ - 4 + "ended_at": [ + 2005 ], - "can_cancel": [ - 4 + "external_id": [ + 2005 ], - "can_check_in": [ - 4 + "id": [ + 2005 ], - "can_reassign_winner": [ - 4 + "label": [ + 2005 + ], + "lineup_1_id": [ + 2005 + ], + "lineup_2_id": [ + 2005 + ], + "match_options_id": [ + 2005 + ], + "organizer_steam_id": [ + 2005 + ], + "password": [ + 2005 + ], + "region": [ + 2005 ], - "can_schedule": [ - 4 + "scheduled_at": [ + 2005 ], - "can_start": [ - 4 + "server_error": [ + 2005 ], - "can_stream_live": [ - 4 + "server_id": [ + 2005 ], - "can_stream_tv": [ - 4 + "source": [ + 2005 ], - "cancels_at": [ - 2923 + "started_at": [ + 2005 ], - "clutches": [ - 3372 + "winning_lineup_id": [ + 2005 ], - "clutches_aggregate": [ - 3365 + "__typename": [ + 64 + ] + }, + "matches_min_fields": { + "cancels_at": [ + 3191 ], "connection_link": [ - 65 + 64 ], "connection_string": [ - 65 + 64 ], "created_at": [ - 2923 + 3191 ], "current_match_map_id": [ - 3320 - ], - "demos": [ - 1312 - ], - "demos_aggregate": [ - 1302 - ], - "e_match_status": [ - 452 - ], - "e_region": [ - 2663 + 3588 ], "effective_at": [ - 2923 - ], - "elo_changes": [ - 3579 - ], - "elo_changes_aggregate": [ - 3562 + 3191 ], "ended_at": [ - 2923 + 3191 ], "external_id": [ - 65 + 64 ], "id": [ - 3320 + 3588 ], "invite_code": [ - 65 - ], - "invites": [ - 1181 - ], - "invites_aggregate": [ - 1174 - ], - "is_captain": [ - 4 - ], - "is_coach": [ - 4 - ], - "is_friend_in_match_lineup": [ - 4 - ], - "is_in_lineup": [ - 4 - ], - "is_match_server_available": [ - 4 - ], - "is_organizer": [ - 4 - ], - "is_server_online": [ - 4 - ], - "is_tournament_match": [ - 4 + 64 ], "label": [ - 65 - ], - "lineup_1": [ - 1267 + 64 ], "lineup_1_id": [ - 3320 - ], - "lineup_2": [ - 1267 + 3588 ], "lineup_2_id": [ - 3320 - ], - "lineup_counts": [ - 945 + 3588 ], "map_veto_picking_lineup_id": [ - 3320 - ], - "map_veto_picks": [ - 1399 - ], - "map_veto_picks_aggregate": [ - 1394 + 3588 ], "map_veto_type": [ - 65 - ], - "match_maps": [ - 1425 - ], - "match_maps_aggregate": [ - 1418 + 64 ], "match_options_id": [ - 3320 + 3588 ], "max_players_per_lineup": [ 35 @@ -30334,1663 +35176,1715 @@ export default { "min_players_per_lineup": [ 35 ], - "opening_duels": [ - 3500 - ], - "opening_duels_aggregate": [ - 3493 - ], - "options": [ - 1462 - ], - "organizer": [ - 2607 - ], "organizer_steam_id": [ 163 ], "password": [ - 65 - ], - "player_assists": [ - 1885 - ], - "player_assists_aggregate": [ - 1876 - ], - "player_damages": [ - 1946 - ], - "player_damages_aggregate": [ - 1939 - ], - "player_flashes": [ - 2057 - ], - "player_flashes_aggregate": [ - 2048 - ], - "player_kills": [ - 2102 - ], - "player_kills_aggregate": [ - 2093 - ], - "player_objectives": [ - 2301 - ], - "player_objectives_aggregate": [ - 2294 - ], - "player_unused_utilities": [ - 2497 - ], - "player_unused_utilities_aggregate": [ - 2490 - ], - "player_utility": [ - 2538 - ], - "player_utility_aggregate": [ - 2531 + 64 ], "region": [ - 65 + 64 ], "region_veto_picking_lineup_id": [ - 3320 - ], - "region_veto_picks": [ - 1493 - ], - "region_veto_picks_aggregate": [ - 1488 - ], - "requested_organizer": [ - 4 + 3588 ], "scheduled_at": [ - 2923 - ], - "server": [ - 2697 + 3191 ], "server_error": [ - 65 + 64 ], "server_id": [ - 3320 + 3588 ], "server_region": [ - 65 + 64 ], "server_type": [ - 65 + 64 ], "source": [ - 65 + 64 ], "started_at": [ - 2923 - ], - "status": [ - 455 - ], - "streams": [ - 1522 - ], - "streams_aggregate": [ - 1512 - ], - "teams": [ - 2888 - ], - "tournament_brackets": [ - 2935 - ], - "tournament_brackets_aggregate": [ - 2926 + 3191 ], "tv_connection_string": [ - 65 - ], - "winner": [ - 1267 + 64 ], "winning_lineup_id": [ - 3320 - ], - "__typename": [ - 63 - ] - }, - "matches_constraint": {}, - "matches_inc_input": { - "organizer_steam_id": [ - 162 + 3588 ], "__typename": [ - 63 + 64 ] }, - "matches_insert_input": { + "matches_min_order_by": { "cancels_at": [ - 2922 - ], - "clutches": [ - 3369 + 2005 ], "created_at": [ - 2922 - ], - "demos": [ - 1309 - ], - "e_match_status": [ - 460 - ], - "e_region": [ - 2669 + 2005 ], - "elo_changes": [ - 3576 + "effective_at": [ + 2005 ], "ended_at": [ - 2922 + 2005 ], "external_id": [ - 63 + 2005 ], "id": [ - 3319 - ], - "invites": [ - 1178 + 2005 ], "label": [ - 63 - ], - "lineup_1": [ - 1276 + 2005 ], "lineup_1_id": [ - 3319 - ], - "lineup_2": [ - 1276 + 2005 ], "lineup_2_id": [ - 3319 - ], - "map_veto_picks": [ - 1398 - ], - "match_maps": [ - 1422 + 2005 ], "match_options_id": [ - 3319 - ], - "opening_duels": [ - 3497 - ], - "options": [ - 1469 - ], - "organizer": [ - 2614 + 2005 ], "organizer_steam_id": [ - 162 + 2005 ], "password": [ - 63 - ], - "player_assists": [ - 1882 - ], - "player_damages": [ - 1943 - ], - "player_flashes": [ - 2054 - ], - "player_kills": [ - 2099 - ], - "player_objectives": [ - 2298 - ], - "player_unused_utilities": [ - 2494 - ], - "player_utility": [ - 2535 + 2005 ], "region": [ - 63 - ], - "region_veto_picks": [ - 1492 + 2005 ], "scheduled_at": [ - 2922 - ], - "server": [ - 2706 + 2005 ], "server_error": [ - 63 + 2005 ], "server_id": [ - 3319 + 2005 ], "source": [ - 63 + 2005 ], "started_at": [ - 2922 + 2005 ], - "status": [ - 454 + "winning_lineup_id": [ + 2005 ], - "streams": [ - 1519 + "__typename": [ + 64 + ] + }, + "matches_mutation_response": { + "affected_rows": [ + 35 ], - "tournament_brackets": [ - 2932 + "returning": [ + 1820 ], - "winner": [ - 1276 + "__typename": [ + 64 + ] + }, + "matches_obj_rel_insert_input": { + "data": [ + 1832 ], - "winning_lineup_id": [ - 3319 + "on_conflict": [ + 1839 ], "__typename": [ - 63 + 64 ] }, - "matches_max_fields": { + "matches_on_conflict": { + "constraint": [ + 1830 + ], + "update_columns": [ + 1854 + ], + "where": [ + 1829 + ], + "__typename": [ + 64 + ] + }, + "matches_order_by": { + "can_assign_server": [ + 2005 + ], + "can_cancel": [ + 2005 + ], + "can_check_in": [ + 2005 + ], + "can_reassign_winner": [ + 2005 + ], + "can_schedule": [ + 2005 + ], + "can_start": [ + 2005 + ], + "can_stream_live": [ + 2005 + ], + "can_stream_tv": [ + 2005 + ], "cancels_at": [ - 2922 + 2005 + ], + "clutches_aggregate": [ + 3637 ], "connection_link": [ - 63 + 2005 ], "connection_string": [ - 63 + 2005 ], "created_at": [ - 2922 + 2005 ], "current_match_map_id": [ - 3319 + 2005 + ], + "demos_aggregate": [ + 1549 + ], + "draft_games_aggregate": [ + 342 + ], + "e_match_status": [ + 704 + ], + "e_region": [ + 2940 ], "effective_at": [ - 2922 + 2005 + ], + "elo_changes_aggregate": [ + 3844 ], "ended_at": [ - 2922 + 2005 ], "external_id": [ - 63 + 2005 ], "id": [ - 3319 + 2005 ], "invite_code": [ - 63 + 2005 + ], + "invites_aggregate": [ + 1419 + ], + "is_captain": [ + 2005 + ], + "is_coach": [ + 2005 + ], + "is_friend_in_match_lineup": [ + 2005 + ], + "is_in_lineup": [ + 2005 + ], + "is_match_server_available": [ + 2005 + ], + "is_organizer": [ + 2005 + ], + "is_server_online": [ + 2005 + ], + "is_tournament_match": [ + 2005 ], "label": [ - 63 + 2005 + ], + "lineup_1": [ + 1520 ], "lineup_1_id": [ - 3319 + 2005 + ], + "lineup_2": [ + 1520 ], "lineup_2_id": [ - 3319 + 2005 + ], + "lineup_counts": [ + 2005 ], "map_veto_picking_lineup_id": [ - 3319 + 2005 + ], + "map_veto_picks_aggregate": [ + 1639 ], "map_veto_type": [ - 63 + 2005 + ], + "match_maps_aggregate": [ + 1663 ], "match_options_id": [ - 3319 + 2005 + ], + "max_players_per_lineup": [ + 2005 + ], + "min_players_per_lineup": [ + 2005 + ], + "opening_duels_aggregate": [ + 3765 + ], + "options": [ + 1713 + ], + "organizer": [ + 2885 + ], + "organizer_steam_id": [ + 2005 + ], + "password": [ + 2005 + ], + "player_assists_aggregate": [ + 2150 + ], + "player_damages_aggregate": [ + 2211 + ], + "player_flashes_aggregate": [ + 2322 ], - "max_players_per_lineup": [ - 34 + "player_kills_aggregate": [ + 2367 ], - "min_players_per_lineup": [ - 34 + "player_objectives_aggregate": [ + 2566 ], - "organizer_steam_id": [ - 162 + "player_unused_utilities_aggregate": [ + 2762 ], - "password": [ - 63 + "player_utility_aggregate": [ + 2803 ], "region": [ - 63 + 2005 ], "region_veto_picking_lineup_id": [ - 3319 + 2005 + ], + "region_veto_picks_aggregate": [ + 1733 + ], + "requested_organizer": [ + 2005 ], "scheduled_at": [ - 2922 + 2005 + ], + "server": [ + 2977 ], "server_error": [ - 63 + 2005 ], "server_id": [ - 3319 + 2005 ], "server_region": [ - 63 + 2005 ], "server_type": [ - 63 + 2005 ], "source": [ - 63 + 2005 ], "started_at": [ - 2922 + 2005 + ], + "status": [ + 2005 + ], + "streams_aggregate": [ + 1759 + ], + "teams_aggregate": [ + 3153 + ], + "tournament_brackets_aggregate": [ + 3200 ], "tv_connection_string": [ - 63 + 2005 + ], + "winner": [ + 1520 ], "winning_lineup_id": [ - 3319 + 2005 ], "__typename": [ - 63 + 64 ] }, - "matches_max_order_by": { + "matches_pk_columns_input": { + "id": [ + 3588 + ], + "__typename": [ + 64 + ] + }, + "matches_select_column": {}, + "matches_set_input": { "cancels_at": [ - 1736 + 3191 ], "created_at": [ - 1736 - ], - "effective_at": [ - 1736 + 3191 ], "ended_at": [ - 1736 + 3191 ], "external_id": [ - 1736 + 64 ], "id": [ - 1736 + 3588 ], "label": [ - 1736 + 64 ], "lineup_1_id": [ - 1736 + 3588 ], "lineup_2_id": [ - 1736 + 3588 ], "match_options_id": [ - 1736 + 3588 ], "organizer_steam_id": [ - 1736 + 163 ], "password": [ - 1736 + 64 ], "region": [ - 1736 + 64 ], "scheduled_at": [ - 1736 + 3191 ], "server_error": [ - 1736 + 64 ], "server_id": [ - 1736 + 3588 ], "source": [ - 1736 + 64 ], "started_at": [ - 1736 + 3191 + ], + "status": [ + 696 ], "winning_lineup_id": [ - 1736 + 3588 ], "__typename": [ - 63 + 64 ] }, - "matches_min_fields": { - "cancels_at": [ - 2922 - ], - "connection_link": [ - 63 - ], - "connection_string": [ - 63 - ], - "created_at": [ - 2922 - ], - "current_match_map_id": [ - 3319 - ], - "effective_at": [ - 2922 - ], - "ended_at": [ - 2922 - ], - "external_id": [ - 63 - ], - "id": [ - 3319 - ], - "invite_code": [ - 63 - ], - "label": [ - 63 - ], - "lineup_1_id": [ - 3319 - ], - "lineup_2_id": [ - 3319 - ], - "map_veto_picking_lineup_id": [ - 3319 - ], - "map_veto_type": [ - 63 - ], - "match_options_id": [ - 3319 - ], + "matches_stddev_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 162 - ], - "password": [ - 63 + 26 ], - "region": [ - 63 + "__typename": [ + 64 + ] + }, + "matches_stddev_order_by": { + "organizer_steam_id": [ + 2005 ], - "region_veto_picking_lineup_id": [ - 3319 + "__typename": [ + 64 + ] + }, + "matches_stddev_pop_fields": { + "max_players_per_lineup": [ + 35 ], - "scheduled_at": [ - 2922 + "min_players_per_lineup": [ + 35 ], - "server_error": [ - 63 + "organizer_steam_id": [ + 26 ], - "server_id": [ - 3319 + "__typename": [ + 64 + ] + }, + "matches_stddev_pop_order_by": { + "organizer_steam_id": [ + 2005 ], - "server_region": [ - 63 + "__typename": [ + 64 + ] + }, + "matches_stddev_samp_fields": { + "max_players_per_lineup": [ + 35 ], - "server_type": [ - 63 + "min_players_per_lineup": [ + 35 ], - "source": [ - 63 + "organizer_steam_id": [ + 26 ], - "started_at": [ - 2922 + "__typename": [ + 64 + ] + }, + "matches_stddev_samp_order_by": { + "organizer_steam_id": [ + 2005 ], - "tv_connection_string": [ - 63 + "__typename": [ + 64 + ] + }, + "matches_stream_cursor_input": { + "initial_value": [ + 1851 ], - "winning_lineup_id": [ - 3319 + "ordering": [ + 217 ], "__typename": [ - 63 + 64 ] }, - "matches_min_order_by": { + "matches_stream_cursor_value_input": { "cancels_at": [ - 1736 + 3191 ], "created_at": [ - 1736 + 3191 ], "effective_at": [ - 1736 + 3191 ], "ended_at": [ - 1736 + 3191 ], "external_id": [ - 1736 + 64 ], "id": [ - 1736 + 3588 ], "label": [ - 1736 + 64 ], "lineup_1_id": [ - 1736 + 3588 ], "lineup_2_id": [ - 1736 + 3588 ], "match_options_id": [ - 1736 + 3588 ], "organizer_steam_id": [ - 1736 + 163 ], "password": [ - 1736 + 64 ], "region": [ - 1736 + 64 ], "scheduled_at": [ - 1736 + 3191 ], "server_error": [ - 1736 + 64 ], "server_id": [ - 1736 + 3588 ], "source": [ - 1736 + 64 ], "started_at": [ - 1736 + 3191 + ], + "status": [ + 696 ], "winning_lineup_id": [ - 1736 + 3588 ], "__typename": [ - 63 + 64 ] }, - "matches_mutation_response": { - "affected_rows": [ - 34 + "matches_sum_fields": { + "max_players_per_lineup": [ + 35 ], - "returning": [ - 1578 + "min_players_per_lineup": [ + 35 + ], + "organizer_steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "matches_obj_rel_insert_input": { - "data": [ - 1590 - ], - "on_conflict": [ - 1597 + "matches_sum_order_by": { + "organizer_steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "matches_on_conflict": { - "constraint": [ - 1588 + "matches_update_column": {}, + "matches_updates": { + "_inc": [ + 1831 ], - "update_columns": [ - 1612 + "_set": [ + 1843 ], "where": [ - 1587 + 1829 ], "__typename": [ - 63 + 64 ] }, - "matches_order_by": { - "can_assign_server": [ - 1736 - ], - "can_cancel": [ - 1736 - ], - "can_check_in": [ - 1736 - ], - "can_reassign_winner": [ - 1736 - ], - "can_schedule": [ - 1736 - ], - "can_start": [ - 1736 - ], - "can_stream_live": [ - 1736 - ], - "can_stream_tv": [ - 1736 - ], - "cancels_at": [ - 1736 - ], - "clutches_aggregate": [ - 3368 - ], - "connection_link": [ - 1736 + "matches_var_pop_fields": { + "max_players_per_lineup": [ + 35 ], - "connection_string": [ - 1736 + "min_players_per_lineup": [ + 35 ], - "created_at": [ - 1736 + "organizer_steam_id": [ + 26 ], - "current_match_map_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "matches_var_pop_order_by": { + "organizer_steam_id": [ + 2005 ], - "demos_aggregate": [ - 1307 + "__typename": [ + 64 + ] + }, + "matches_var_samp_fields": { + "max_players_per_lineup": [ + 35 ], - "e_match_status": [ - 462 + "min_players_per_lineup": [ + 35 ], - "e_region": [ - 2671 + "organizer_steam_id": [ + 26 ], - "effective_at": [ - 1736 + "__typename": [ + 64 + ] + }, + "matches_var_samp_order_by": { + "organizer_steam_id": [ + 2005 ], - "elo_changes_aggregate": [ - 3575 + "__typename": [ + 64 + ] + }, + "matches_variance_fields": { + "max_players_per_lineup": [ + 35 ], - "ended_at": [ - 1736 + "min_players_per_lineup": [ + 35 ], - "external_id": [ - 1736 + "organizer_steam_id": [ + 26 ], - "id": [ - 1736 + "__typename": [ + 64 + ] + }, + "matches_variance_order_by": { + "organizer_steam_id": [ + 2005 ], - "invite_code": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes": { + "hash": [ + 64 ], - "invites_aggregate": [ - 1177 + "name": [ + 64 ], - "is_captain": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_aggregate": { + "aggregate": [ + 1864 ], - "is_coach": [ - 1736 + "nodes": [ + 1862 ], - "is_friend_in_match_lineup": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_aggregate_fields": { + "count": [ + 35, + { + "columns": [ + 1874, + "[migration_hashes_hashes_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "is_in_lineup": [ - 1736 + "max": [ + 1868 ], - "is_match_server_available": [ - 1736 + "min": [ + 1869 ], - "is_organizer": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_bool_exp": { + "_and": [ + 1865 ], - "is_server_online": [ - 1736 + "_not": [ + 1865 ], - "is_tournament_match": [ - 1736 + "_or": [ + 1865 ], - "label": [ - 1736 + "hash": [ + 66 ], - "lineup_1": [ - 1278 + "name": [ + 66 ], - "lineup_1_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_constraint": {}, + "migration_hashes_hashes_insert_input": { + "hash": [ + 64 ], - "lineup_2": [ - 1278 + "name": [ + 64 ], - "lineup_2_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_max_fields": { + "hash": [ + 64 ], - "lineup_counts": [ - 1736 + "name": [ + 64 ], - "map_veto_picking_lineup_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_min_fields": { + "hash": [ + 64 ], - "map_veto_picks_aggregate": [ - 1397 + "name": [ + 64 ], - "map_veto_type": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_mutation_response": { + "affected_rows": [ + 35 ], - "match_maps_aggregate": [ - 1421 + "returning": [ + 1862 ], - "match_options_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_on_conflict": { + "constraint": [ + 1866 ], - "max_players_per_lineup": [ - 1736 + "update_columns": [ + 1878 ], - "min_players_per_lineup": [ - 1736 + "where": [ + 1865 ], - "opening_duels_aggregate": [ - 3496 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_order_by": { + "hash": [ + 2005 ], - "options": [ - 1471 + "name": [ + 2005 ], - "organizer": [ - 2616 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_pk_columns_input": { + "name": [ + 64 ], - "organizer_steam_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_select_column": {}, + "migration_hashes_hashes_set_input": { + "hash": [ + 64 ], - "password": [ - 1736 + "name": [ + 64 ], - "player_assists_aggregate": [ - 1881 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_stream_cursor_input": { + "initial_value": [ + 1877 ], - "player_damages_aggregate": [ - 1942 + "ordering": [ + 217 ], - "player_flashes_aggregate": [ - 2053 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_stream_cursor_value_input": { + "hash": [ + 64 ], - "player_kills_aggregate": [ - 2098 + "name": [ + 64 ], - "player_objectives_aggregate": [ - 2297 + "__typename": [ + 64 + ] + }, + "migration_hashes_hashes_update_column": {}, + "migration_hashes_hashes_updates": { + "_set": [ + 1875 ], - "player_unused_utilities_aggregate": [ - 2493 + "where": [ + 1865 ], - "player_utility_aggregate": [ - 2534 + "__typename": [ + 64 + ] + }, + "my_friends": { + "avatar_url": [ + 64 ], - "region": [ - 1736 + "country": [ + 64 ], - "region_veto_picking_lineup_id": [ - 1736 + "created_at": [ + 3191 ], - "region_veto_picks_aggregate": [ - 1491 + "discord_id": [ + 64 ], - "requested_organizer": [ - 1736 + "elo": [ + 1188, + { + "path": [ + 64 + ] + } ], - "scheduled_at": [ - 1736 + "friend_steam_id": [ + 163 ], - "server": [ - 2708 + "invited_by_steam_id": [ + 163 ], - "server_error": [ - 1736 + "language": [ + 64 ], - "server_id": [ - 1736 + "last_sign_in_at": [ + 3191 ], - "server_region": [ - 1736 + "name": [ + 64 ], - "server_type": [ - 1736 + "name_registered": [ + 3 ], - "source": [ - 1736 + "player": [ + 2872 ], - "started_at": [ - 1736 + "profile_url": [ + 64 + ], + "role": [ + 64 ], "status": [ - 1736 + 64 ], - "streams_aggregate": [ - 1517 + "steam_id": [ + 163 ], - "teams_aggregate": [ - 2884 + "__typename": [ + 64 + ] + }, + "my_friends_aggregate": { + "aggregate": [ + 1886 ], - "tournament_brackets_aggregate": [ - 2931 + "nodes": [ + 1880 ], - "tv_connection_string": [ - 1736 + "__typename": [ + 64 + ] + }, + "my_friends_aggregate_bool_exp": { + "bool_and": [ + 1883 ], - "winner": [ - 1278 + "bool_or": [ + 1884 ], - "winning_lineup_id": [ - 1736 + "count": [ + 1885 ], "__typename": [ - 63 + 64 ] }, - "matches_pk_columns_input": { - "id": [ - 3319 + "my_friends_aggregate_bool_exp_bool_and": { + "arguments": [ + 1906 + ], + "distinct": [ + 3 + ], + "filter": [ + 1892 + ], + "predicate": [ + 4 ], "__typename": [ - 63 + 64 ] }, - "matches_select_column": {}, - "matches_set_input": { - "cancels_at": [ - 2922 + "my_friends_aggregate_bool_exp_bool_or": { + "arguments": [ + 1907 ], - "created_at": [ - 2922 + "distinct": [ + 3 ], - "ended_at": [ - 2922 + "filter": [ + 1892 ], - "external_id": [ - 63 + "predicate": [ + 4 ], - "id": [ - 3319 + "__typename": [ + 64 + ] + }, + "my_friends_aggregate_bool_exp_count": { + "arguments": [ + 1905 ], - "label": [ - 63 + "distinct": [ + 3 ], - "lineup_1_id": [ - 3319 + "filter": [ + 1892 ], - "lineup_2_id": [ - 3319 + "predicate": [ + 36 ], - "match_options_id": [ - 3319 + "__typename": [ + 64 + ] + }, + "my_friends_aggregate_fields": { + "avg": [ + 1890 ], - "organizer_steam_id": [ - 162 + "count": [ + 35, + { + "columns": [ + 1905, + "[my_friends_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "password": [ - 63 + "max": [ + 1898 ], - "region": [ - 63 + "min": [ + 1900 ], - "scheduled_at": [ - 2922 + "stddev": [ + 1909 ], - "server_error": [ - 63 + "stddev_pop": [ + 1911 ], - "server_id": [ - 3319 + "stddev_samp": [ + 1913 ], - "source": [ - 63 + "sum": [ + 1917 ], - "started_at": [ - 2922 + "var_pop": [ + 1920 ], - "status": [ - 454 + "var_samp": [ + 1922 ], - "winning_lineup_id": [ - 3319 + "variance": [ + 1924 ], "__typename": [ - 63 + 64 ] }, - "matches_stddev_fields": { - "max_players_per_lineup": [ - 34 + "my_friends_aggregate_order_by": { + "avg": [ + 1891 ], - "min_players_per_lineup": [ - 34 + "count": [ + 2005 ], - "organizer_steam_id": [ - 25 + "max": [ + 1899 ], - "__typename": [ - 63 - ] - }, - "matches_stddev_order_by": { - "organizer_steam_id": [ - 1736 + "min": [ + 1901 ], - "__typename": [ - 63 - ] - }, - "matches_stddev_pop_fields": { - "max_players_per_lineup": [ - 34 + "stddev": [ + 1910 ], - "min_players_per_lineup": [ - 34 + "stddev_pop": [ + 1912 ], - "organizer_steam_id": [ - 25 + "stddev_samp": [ + 1914 + ], + "sum": [ + 1918 + ], + "var_pop": [ + 1921 + ], + "var_samp": [ + 1923 + ], + "variance": [ + 1925 ], "__typename": [ - 63 + 64 ] }, - "matches_stddev_pop_order_by": { - "organizer_steam_id": [ - 1736 + "my_friends_append_input": { + "elo": [ + 1188 ], "__typename": [ - 63 + 64 ] }, - "matches_stddev_samp_fields": { - "max_players_per_lineup": [ - 34 - ], - "min_players_per_lineup": [ - 34 - ], - "organizer_steam_id": [ - 25 + "my_friends_arr_rel_insert_input": { + "data": [ + 1897 ], "__typename": [ - 63 + 64 ] }, - "matches_stddev_samp_order_by": { - "organizer_steam_id": [ - 1736 + "my_friends_avg_fields": { + "friend_steam_id": [ + 26 + ], + "invited_by_steam_id": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "matches_stream_cursor_input": { - "initial_value": [ - 1609 + "my_friends_avg_order_by": { + "friend_steam_id": [ + 2005 ], - "ordering": [ - 216 + "invited_by_steam_id": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "matches_stream_cursor_value_input": { - "cancels_at": [ - 2922 - ], - "created_at": [ - 2922 + "my_friends_bool_exp": { + "_and": [ + 1892 ], - "effective_at": [ - 2922 + "_not": [ + 1892 ], - "ended_at": [ - 2922 + "_or": [ + 1892 ], - "external_id": [ - 63 + "avatar_url": [ + 66 ], - "id": [ - 3319 + "country": [ + 66 ], - "label": [ - 63 + "created_at": [ + 3192 ], - "lineup_1_id": [ - 3319 + "discord_id": [ + 66 ], - "lineup_2_id": [ - 3319 + "elo": [ + 1190 ], - "match_options_id": [ - 3319 + "friend_steam_id": [ + 164 ], - "organizer_steam_id": [ - 162 + "invited_by_steam_id": [ + 164 ], - "password": [ - 63 + "language": [ + 66 ], - "region": [ - 63 + "last_sign_in_at": [ + 3192 ], - "scheduled_at": [ - 2922 + "name": [ + 66 ], - "server_error": [ - 63 + "name_registered": [ + 4 ], - "server_id": [ - 3319 + "player": [ + 2876 ], - "source": [ - 63 + "profile_url": [ + 66 ], - "started_at": [ - 2922 + "role": [ + 66 ], "status": [ - 454 + 66 ], - "winning_lineup_id": [ - 3319 + "steam_id": [ + 164 + ], + "__typename": [ + 64 + ] + }, + "my_friends_delete_at_path_input": { + "elo": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "matches_sum_fields": { - "max_players_per_lineup": [ - 34 - ], - "min_players_per_lineup": [ - 34 - ], - "organizer_steam_id": [ - 162 + "my_friends_delete_elem_input": { + "elo": [ + 35 ], "__typename": [ - 63 + 64 ] }, - "matches_sum_order_by": { - "organizer_steam_id": [ - 1736 + "my_friends_delete_key_input": { + "elo": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "matches_update_column": {}, - "matches_updates": { - "_inc": [ - 1589 + "my_friends_inc_input": { + "friend_steam_id": [ + 163 ], - "_set": [ - 1601 + "invited_by_steam_id": [ + 163 ], - "where": [ - 1587 + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "matches_var_pop_fields": { - "max_players_per_lineup": [ - 34 + "my_friends_insert_input": { + "avatar_url": [ + 64 ], - "min_players_per_lineup": [ - 34 + "country": [ + 64 ], - "organizer_steam_id": [ - 25 + "created_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "matches_var_pop_order_by": { - "organizer_steam_id": [ - 1736 + "discord_id": [ + 64 ], - "__typename": [ - 63 - ] - }, - "matches_var_samp_fields": { - "max_players_per_lineup": [ - 34 + "elo": [ + 1188 ], - "min_players_per_lineup": [ - 34 + "friend_steam_id": [ + 163 ], - "organizer_steam_id": [ - 25 + "invited_by_steam_id": [ + 163 ], - "__typename": [ - 63 - ] - }, - "matches_var_samp_order_by": { - "organizer_steam_id": [ - 1736 + "language": [ + 64 ], - "__typename": [ - 63 - ] - }, - "matches_variance_fields": { - "max_players_per_lineup": [ - 34 + "last_sign_in_at": [ + 3191 ], - "min_players_per_lineup": [ - 34 + "name": [ + 64 ], - "organizer_steam_id": [ - 25 + "name_registered": [ + 3 ], - "__typename": [ - 63 - ] - }, - "matches_variance_order_by": { - "organizer_steam_id": [ - 1736 + "player": [ + 2883 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes": { - "hash": [ - 63 + "profile_url": [ + 64 ], - "name": [ - 63 + "role": [ + 64 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_aggregate": { - "aggregate": [ - 1622 + "status": [ + 64 ], - "nodes": [ - 1620 + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "migration_hashes_hashes_aggregate_fields": { - "count": [ - 34, - { - "columns": [ - 1632, - "[migration_hashes_hashes_select_column!]" - ], - "distinct": [ - 3 - ] - } + "my_friends_max_fields": { + "avatar_url": [ + 64 ], - "max": [ - 1626 + "country": [ + 64 ], - "min": [ - 1627 + "created_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_bool_exp": { - "_and": [ - 1623 + "discord_id": [ + 64 ], - "_not": [ - 1623 + "friend_steam_id": [ + 163 ], - "_or": [ - 1623 + "invited_by_steam_id": [ + 163 ], - "hash": [ - 65 + "language": [ + 64 + ], + "last_sign_in_at": [ + 3191 ], "name": [ - 65 + 64 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_constraint": {}, - "migration_hashes_hashes_insert_input": { - "hash": [ - 63 + "profile_url": [ + 64 ], - "name": [ - 63 + "role": [ + 64 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_max_fields": { - "hash": [ - 63 + "status": [ + 64 ], - "name": [ - 63 + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "migration_hashes_hashes_min_fields": { - "hash": [ - 63 + "my_friends_max_order_by": { + "avatar_url": [ + 2005 ], - "name": [ - 63 + "country": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_mutation_response": { - "affected_rows": [ - 34 + "created_at": [ + 2005 ], - "returning": [ - 1620 + "discord_id": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_on_conflict": { - "constraint": [ - 1624 + "friend_steam_id": [ + 2005 ], - "update_columns": [ - 1636 + "invited_by_steam_id": [ + 2005 ], - "where": [ - 1623 + "language": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_order_by": { - "hash": [ - 1736 + "last_sign_in_at": [ + 2005 ], "name": [ - 1736 + 2005 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_pk_columns_input": { - "name": [ - 63 + "profile_url": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_select_column": {}, - "migration_hashes_hashes_set_input": { - "hash": [ - 63 + "role": [ + 2005 ], - "name": [ - 63 + "status": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "migration_hashes_hashes_stream_cursor_input": { - "initial_value": [ - 1635 + "my_friends_min_fields": { + "avatar_url": [ + 64 ], - "ordering": [ - 216 + "country": [ + 64 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_stream_cursor_value_input": { - "hash": [ - 63 + "created_at": [ + 3191 + ], + "discord_id": [ + 64 + ], + "friend_steam_id": [ + 163 + ], + "invited_by_steam_id": [ + 163 + ], + "language": [ + 64 + ], + "last_sign_in_at": [ + 3191 ], "name": [ - 63 + 64 ], - "__typename": [ - 63 - ] - }, - "migration_hashes_hashes_update_column": {}, - "migration_hashes_hashes_updates": { - "_set": [ - 1633 + "profile_url": [ + 64 ], - "where": [ - 1623 + "role": [ + 64 + ], + "status": [ + 64 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "my_friends": { + "my_friends_min_order_by": { "avatar_url": [ - 63 + 2005 ], "country": [ - 63 + 2005 ], "created_at": [ - 2922 + 2005 ], "discord_id": [ - 63 - ], - "elo": [ - 946, - { - "path": [ - 63 - ] - } + 2005 ], "friend_steam_id": [ - 162 + 2005 ], "invited_by_steam_id": [ - 162 + 2005 ], "language": [ - 63 + 2005 ], "last_sign_in_at": [ - 2922 + 2005 ], "name": [ - 63 - ], - "name_registered": [ - 3 - ], - "player": [ - 2603 + 2005 ], "profile_url": [ - 63 + 2005 ], "role": [ - 63 + 2005 ], "status": [ - 63 + 2005 ], "steam_id": [ - 162 + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_aggregate": { - "aggregate": [ - 1644 + "my_friends_mutation_response": { + "affected_rows": [ + 35 ], - "nodes": [ - 1638 + "returning": [ + 1880 ], "__typename": [ - 63 + 64 ] }, - "my_friends_aggregate_bool_exp": { - "bool_and": [ - 1641 + "my_friends_order_by": { + "avatar_url": [ + 2005 ], - "bool_or": [ - 1642 + "country": [ + 2005 ], - "count": [ - 1643 + "created_at": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_aggregate_bool_exp_bool_and": { - "arguments": [ - 1664 + "discord_id": [ + 2005 ], - "distinct": [ - 3 + "elo": [ + 2005 ], - "filter": [ - 1650 + "friend_steam_id": [ + 2005 ], - "predicate": [ - 4 + "invited_by_steam_id": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_aggregate_bool_exp_bool_or": { - "arguments": [ - 1665 + "language": [ + 2005 ], - "distinct": [ - 3 + "last_sign_in_at": [ + 2005 ], - "filter": [ - 1650 + "name": [ + 2005 ], - "predicate": [ - 4 + "name_registered": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_aggregate_bool_exp_count": { - "arguments": [ - 1663 + "player": [ + 2885 ], - "distinct": [ - 3 + "profile_url": [ + 2005 ], - "filter": [ - 1650 + "role": [ + 2005 ], - "predicate": [ - 35 + "status": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_aggregate_fields": { - "avg": [ - 1648 + "my_friends_prepend_input": { + "elo": [ + 1188 ], - "count": [ - 34, - { - "columns": [ - 1663, - "[my_friends_select_column!]" - ], - "distinct": [ - 3 - ] - } + "__typename": [ + 64 + ] + }, + "my_friends_select_column": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, + "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, + "my_friends_set_input": { + "avatar_url": [ + 64 ], - "max": [ - 1656 + "country": [ + 64 ], - "min": [ - 1658 + "created_at": [ + 3191 ], - "stddev": [ - 1667 + "discord_id": [ + 64 ], - "stddev_pop": [ - 1669 + "elo": [ + 1188 ], - "stddev_samp": [ - 1671 + "friend_steam_id": [ + 163 ], - "sum": [ - 1675 + "invited_by_steam_id": [ + 163 ], - "var_pop": [ - 1678 + "language": [ + 64 ], - "var_samp": [ - 1680 + "last_sign_in_at": [ + 3191 ], - "variance": [ - 1682 + "name": [ + 64 ], - "__typename": [ - 63 - ] - }, - "my_friends_aggregate_order_by": { - "avg": [ - 1649 + "name_registered": [ + 3 ], - "count": [ - 1736 + "profile_url": [ + 64 ], - "max": [ - 1657 + "role": [ + 64 ], - "min": [ - 1659 + "status": [ + 64 ], - "stddev": [ - 1668 + "steam_id": [ + 163 ], - "stddev_pop": [ - 1670 + "__typename": [ + 64 + ] + }, + "my_friends_stddev_fields": { + "friend_steam_id": [ + 26 ], - "stddev_samp": [ - 1672 + "invited_by_steam_id": [ + 26 ], - "sum": [ - 1676 + "steam_id": [ + 26 ], - "var_pop": [ - 1679 + "__typename": [ + 64 + ] + }, + "my_friends_stddev_order_by": { + "friend_steam_id": [ + 2005 ], - "var_samp": [ - 1681 + "invited_by_steam_id": [ + 2005 ], - "variance": [ - 1683 + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_append_input": { - "elo": [ - 946 + "my_friends_stddev_pop_fields": { + "friend_steam_id": [ + 26 + ], + "invited_by_steam_id": [ + 26 + ], + "steam_id": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "my_friends_arr_rel_insert_input": { - "data": [ - 1655 + "my_friends_stddev_pop_order_by": { + "friend_steam_id": [ + 2005 + ], + "invited_by_steam_id": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_avg_fields": { + "my_friends_stddev_samp_fields": { "friend_steam_id": [ - 25 + 26 ], "invited_by_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, - "my_friends_avg_order_by": { + "my_friends_stddev_samp_order_by": { "friend_steam_id": [ - 1736 + 2005 ], "invited_by_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_bool_exp": { - "_and": [ - 1650 - ], - "_not": [ - 1650 + "my_friends_stream_cursor_input": { + "initial_value": [ + 1916 ], - "_or": [ - 1650 + "ordering": [ + 217 ], + "__typename": [ + 64 + ] + }, + "my_friends_stream_cursor_value_input": { "avatar_url": [ - 65 + 64 ], "country": [ - 65 + 64 ], "created_at": [ - 2923 + 3191 ], "discord_id": [ - 65 + 64 ], "elo": [ - 948 + 1188 ], "friend_steam_id": [ 163 @@ -31999,848 +36893,884 @@ export default { 163 ], "language": [ - 65 + 64 ], "last_sign_in_at": [ - 2923 + 3191 ], "name": [ - 65 + 64 ], "name_registered": [ - 4 - ], - "player": [ - 2607 + 3 ], "profile_url": [ - 65 + 64 ], "role": [ - 65 + 64 ], "status": [ - 65 + 64 ], "steam_id": [ 163 ], "__typename": [ - 63 + 64 ] }, - "my_friends_delete_at_path_input": { - "elo": [ - 63 + "my_friends_sum_fields": { + "friend_steam_id": [ + 163 + ], + "invited_by_steam_id": [ + 163 + ], + "steam_id": [ + 163 ], "__typename": [ - 63 + 64 ] }, - "my_friends_delete_elem_input": { - "elo": [ - 34 + "my_friends_sum_order_by": { + "friend_steam_id": [ + 2005 + ], + "invited_by_steam_id": [ + 2005 + ], + "steam_id": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_delete_key_input": { - "elo": [ - 63 + "my_friends_updates": { + "_append": [ + 1888 + ], + "_delete_at_path": [ + 1893 + ], + "_delete_elem": [ + 1894 + ], + "_delete_key": [ + 1895 + ], + "_inc": [ + 1896 + ], + "_prepend": [ + 1904 + ], + "_set": [ + 1908 + ], + "where": [ + 1892 ], "__typename": [ - 63 + 64 ] }, - "my_friends_inc_input": { + "my_friends_var_pop_fields": { "friend_steam_id": [ - 162 + 26 ], "invited_by_steam_id": [ - 162 + 26 ], "steam_id": [ - 162 + 26 ], "__typename": [ - 63 + 64 ] }, - "my_friends_insert_input": { - "avatar_url": [ - 63 - ], - "country": [ - 63 - ], - "created_at": [ - 2922 + "my_friends_var_pop_order_by": { + "friend_steam_id": [ + 2005 ], - "discord_id": [ - 63 + "invited_by_steam_id": [ + 2005 ], - "elo": [ - 946 + "steam_id": [ + 2005 ], + "__typename": [ + 64 + ] + }, + "my_friends_var_samp_fields": { "friend_steam_id": [ - 162 + 26 ], "invited_by_steam_id": [ - 162 + 26 ], - "language": [ - 63 + "steam_id": [ + 26 ], - "last_sign_in_at": [ - 2922 + "__typename": [ + 64 + ] + }, + "my_friends_var_samp_order_by": { + "friend_steam_id": [ + 2005 ], - "name": [ - 63 + "invited_by_steam_id": [ + 2005 ], - "name_registered": [ - 3 + "steam_id": [ + 2005 ], - "player": [ - 2614 + "__typename": [ + 64 + ] + }, + "my_friends_variance_fields": { + "friend_steam_id": [ + 26 ], - "profile_url": [ - 63 + "invited_by_steam_id": [ + 26 ], - "role": [ - 63 + "steam_id": [ + 26 ], - "status": [ - 63 + "__typename": [ + 64 + ] + }, + "my_friends_variance_order_by": { + "friend_steam_id": [ + 2005 + ], + "invited_by_steam_id": [ + 2005 ], "steam_id": [ - 162 + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_max_fields": { - "avatar_url": [ - 63 + "news_articles": { + "author": [ + 64 ], - "country": [ - 63 + "content_html": [ + 64 + ], + "cover_image_url": [ + 64 ], "created_at": [ - 2922 + 3191 ], - "discord_id": [ - 63 + "id": [ + 3588 ], - "friend_steam_id": [ - 162 + "issue_number": [ + 35 ], - "invited_by_steam_id": [ - 162 + "published_at": [ + 3191 ], - "language": [ - 63 + "scraped_at": [ + 3191 ], - "last_sign_in_at": [ - 2922 + "slug": [ + 64 ], - "name": [ - 63 + "source": [ + 64 ], - "profile_url": [ - 63 + "teaser": [ + 64 ], - "role": [ - 63 + "title": [ + 64 ], - "status": [ - 63 + "updated_at": [ + 3191 ], - "steam_id": [ - 162 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_max_order_by": { - "avatar_url": [ - 1736 + "news_articles_aggregate": { + "aggregate": [ + 1928 ], - "country": [ - 1736 + "nodes": [ + 1926 ], - "created_at": [ - 1736 + "__typename": [ + 64 + ] + }, + "news_articles_aggregate_fields": { + "avg": [ + 1929 ], - "discord_id": [ - 1736 + "count": [ + 35, + { + "columns": [ + 1940, + "[news_articles_select_column!]" + ], + "distinct": [ + 3 + ] + } ], - "friend_steam_id": [ - 1736 + "max": [ + 1934 ], - "invited_by_steam_id": [ - 1736 + "min": [ + 1935 ], - "language": [ - 1736 + "stddev": [ + 1942 ], - "last_sign_in_at": [ - 1736 + "stddev_pop": [ + 1943 ], - "name": [ - 1736 + "stddev_samp": [ + 1944 ], - "profile_url": [ - 1736 + "sum": [ + 1947 ], - "role": [ - 1736 + "var_pop": [ + 1950 ], - "status": [ - 1736 + "var_samp": [ + 1951 ], - "steam_id": [ - 1736 + "variance": [ + 1952 ], "__typename": [ - 63 + 64 ] }, - "my_friends_min_fields": { - "avatar_url": [ - 63 + "news_articles_avg_fields": { + "issue_number": [ + 26 ], - "country": [ - 63 + "__typename": [ + 64 + ] + }, + "news_articles_bool_exp": { + "_and": [ + 1930 + ], + "_not": [ + 1930 + ], + "_or": [ + 1930 + ], + "author": [ + 66 + ], + "content_html": [ + 66 + ], + "cover_image_url": [ + 66 ], "created_at": [ - 2922 + 3192 ], - "discord_id": [ - 63 + "id": [ + 3589 ], - "friend_steam_id": [ - 162 + "issue_number": [ + 36 ], - "invited_by_steam_id": [ - 162 + "published_at": [ + 3192 ], - "language": [ - 63 + "scraped_at": [ + 3192 ], - "last_sign_in_at": [ - 2922 + "slug": [ + 66 ], - "name": [ - 63 + "source": [ + 66 ], - "profile_url": [ - 63 + "teaser": [ + 66 ], - "role": [ - 63 + "title": [ + 66 ], - "status": [ - 63 + "updated_at": [ + 3192 ], - "steam_id": [ - 162 + "url": [ + 66 ], "__typename": [ - 63 + 64 ] }, - "my_friends_min_order_by": { - "avatar_url": [ - 1736 + "news_articles_constraint": {}, + "news_articles_inc_input": { + "issue_number": [ + 35 ], - "country": [ - 1736 + "__typename": [ + 64 + ] + }, + "news_articles_insert_input": { + "author": [ + 64 ], - "created_at": [ - 1736 + "content_html": [ + 64 ], - "discord_id": [ - 1736 + "cover_image_url": [ + 64 ], - "friend_steam_id": [ - 1736 + "created_at": [ + 3191 ], - "invited_by_steam_id": [ - 1736 + "id": [ + 3588 ], - "language": [ - 1736 + "issue_number": [ + 35 ], - "last_sign_in_at": [ - 1736 + "published_at": [ + 3191 ], - "name": [ - 1736 + "scraped_at": [ + 3191 ], - "profile_url": [ - 1736 + "slug": [ + 64 ], - "role": [ - 1736 + "source": [ + 64 ], - "status": [ - 1736 + "teaser": [ + 64 ], - "steam_id": [ - 1736 + "title": [ + 64 ], - "__typename": [ - 63 - ] - }, - "my_friends_mutation_response": { - "affected_rows": [ - 34 + "updated_at": [ + 3191 ], - "returning": [ - 1638 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_order_by": { - "avatar_url": [ - 1736 - ], - "country": [ - 1736 - ], - "created_at": [ - 1736 + "news_articles_max_fields": { + "author": [ + 64 ], - "discord_id": [ - 1736 + "content_html": [ + 64 ], - "elo": [ - 1736 + "cover_image_url": [ + 64 ], - "friend_steam_id": [ - 1736 + "created_at": [ + 3191 ], - "invited_by_steam_id": [ - 1736 + "id": [ + 3588 ], - "language": [ - 1736 + "issue_number": [ + 35 ], - "last_sign_in_at": [ - 1736 + "published_at": [ + 3191 ], - "name": [ - 1736 + "scraped_at": [ + 3191 ], - "name_registered": [ - 1736 + "slug": [ + 64 ], - "player": [ - 2616 + "source": [ + 64 ], - "profile_url": [ - 1736 + "teaser": [ + 64 ], - "role": [ - 1736 + "title": [ + 64 ], - "status": [ - 1736 + "updated_at": [ + 3191 ], - "steam_id": [ - 1736 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_prepend_input": { - "elo": [ - 946 + "news_articles_min_fields": { + "author": [ + 64 ], - "__typename": [ - 63 - ] - }, - "my_friends_select_column": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_and_arguments_columns": {}, - "my_friends_select_column_my_friends_aggregate_bool_exp_bool_or_arguments_columns": {}, - "my_friends_set_input": { - "avatar_url": [ - 63 + "content_html": [ + 64 ], - "country": [ - 63 + "cover_image_url": [ + 64 ], "created_at": [ - 2922 - ], - "discord_id": [ - 63 - ], - "elo": [ - 946 + 3191 ], - "friend_steam_id": [ - 162 + "id": [ + 3588 ], - "invited_by_steam_id": [ - 162 + "issue_number": [ + 35 ], - "language": [ - 63 + "published_at": [ + 3191 ], - "last_sign_in_at": [ - 2922 + "scraped_at": [ + 3191 ], - "name": [ - 63 + "slug": [ + 64 ], - "name_registered": [ - 3 + "source": [ + 64 ], - "profile_url": [ - 63 + "teaser": [ + 64 ], - "role": [ - 63 + "title": [ + 64 ], - "status": [ - 63 + "updated_at": [ + 3191 ], - "steam_id": [ - 162 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_stddev_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ - 25 + "news_articles_mutation_response": { + "affected_rows": [ + 35 ], - "steam_id": [ - 25 + "returning": [ + 1926 ], "__typename": [ - 63 + 64 ] }, - "my_friends_stddev_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_on_conflict": { + "constraint": [ + 1931 ], - "invited_by_steam_id": [ - 1736 + "update_columns": [ + 1948 ], - "steam_id": [ - 1736 + "where": [ + 1930 ], "__typename": [ - 63 + 64 ] }, - "my_friends_stddev_pop_fields": { - "friend_steam_id": [ - 25 + "news_articles_order_by": { + "author": [ + 2005 ], - "invited_by_steam_id": [ - 25 + "content_html": [ + 2005 ], - "steam_id": [ - 25 + "cover_image_url": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_pop_order_by": { - "friend_steam_id": [ - 1736 + "created_at": [ + 2005 ], - "invited_by_steam_id": [ - 1736 + "id": [ + 2005 ], - "steam_id": [ - 1736 + "issue_number": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_samp_fields": { - "friend_steam_id": [ - 25 + "published_at": [ + 2005 ], - "invited_by_steam_id": [ - 25 + "scraped_at": [ + 2005 ], - "steam_id": [ - 25 + "slug": [ + 2005 ], - "__typename": [ - 63 - ] - }, - "my_friends_stddev_samp_order_by": { - "friend_steam_id": [ - 1736 + "source": [ + 2005 ], - "invited_by_steam_id": [ - 1736 + "teaser": [ + 2005 ], - "steam_id": [ - 1736 + "title": [ + 2005 + ], + "updated_at": [ + 2005 + ], + "url": [ + 2005 ], "__typename": [ - 63 + 64 ] }, - "my_friends_stream_cursor_input": { - "initial_value": [ - 1674 - ], - "ordering": [ - 216 + "news_articles_pk_columns_input": { + "id": [ + 3588 ], "__typename": [ - 63 + 64 ] }, - "my_friends_stream_cursor_value_input": { - "avatar_url": [ - 63 - ], - "country": [ - 63 + "news_articles_select_column": {}, + "news_articles_set_input": { + "author": [ + 64 ], - "created_at": [ - 2922 + "content_html": [ + 64 ], - "discord_id": [ - 63 + "cover_image_url": [ + 64 ], - "elo": [ - 946 + "created_at": [ + 3191 ], - "friend_steam_id": [ - 162 + "id": [ + 3588 ], - "invited_by_steam_id": [ - 162 + "issue_number": [ + 35 ], - "language": [ - 63 + "published_at": [ + 3191 ], - "last_sign_in_at": [ - 2922 + "scraped_at": [ + 3191 ], - "name": [ - 63 + "slug": [ + 64 ], - "name_registered": [ - 3 + "source": [ + 64 ], - "profile_url": [ - 63 + "teaser": [ + 64 ], - "role": [ - 63 + "title": [ + 64 ], - "status": [ - 63 + "updated_at": [ + 3191 ], - "steam_id": [ - 162 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_sum_fields": { - "friend_steam_id": [ - 162 - ], - "invited_by_steam_id": [ - 162 + "news_articles_stddev_fields": { + "issue_number": [ + 26 ], - "steam_id": [ - 162 + "__typename": [ + 64 + ] + }, + "news_articles_stddev_pop_fields": { + "issue_number": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "my_friends_sum_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_stddev_samp_fields": { + "issue_number": [ + 26 ], - "invited_by_steam_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "news_articles_stream_cursor_input": { + "initial_value": [ + 1946 ], - "steam_id": [ - 1736 + "ordering": [ + 217 ], "__typename": [ - 63 + 64 ] }, - "my_friends_updates": { - "_append": [ - 1646 + "news_articles_stream_cursor_value_input": { + "author": [ + 64 ], - "_delete_at_path": [ - 1651 + "content_html": [ + 64 ], - "_delete_elem": [ - 1652 + "cover_image_url": [ + 64 ], - "_delete_key": [ - 1653 + "created_at": [ + 3191 ], - "_inc": [ - 1654 + "id": [ + 3588 ], - "_prepend": [ - 1662 + "issue_number": [ + 35 ], - "_set": [ - 1666 + "published_at": [ + 3191 ], - "where": [ - 1650 + "scraped_at": [ + 3191 ], - "__typename": [ - 63 - ] - }, - "my_friends_var_pop_fields": { - "friend_steam_id": [ - 25 + "slug": [ + 64 ], - "invited_by_steam_id": [ - 25 + "source": [ + 64 ], - "steam_id": [ - 25 + "teaser": [ + 64 ], - "__typename": [ - 63 - ] - }, - "my_friends_var_pop_order_by": { - "friend_steam_id": [ - 1736 + "title": [ + 64 ], - "invited_by_steam_id": [ - 1736 + "updated_at": [ + 3191 ], - "steam_id": [ - 1736 + "url": [ + 64 ], "__typename": [ - 63 + 64 ] }, - "my_friends_var_samp_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ - 25 - ], - "steam_id": [ - 25 + "news_articles_sum_fields": { + "issue_number": [ + 35 ], "__typename": [ - 63 + 64 ] }, - "my_friends_var_samp_order_by": { - "friend_steam_id": [ - 1736 + "news_articles_update_column": {}, + "news_articles_updates": { + "_inc": [ + 1932 ], - "invited_by_steam_id": [ - 1736 + "_set": [ + 1941 ], - "steam_id": [ - 1736 + "where": [ + 1930 ], "__typename": [ - 63 + 64 ] }, - "my_friends_variance_fields": { - "friend_steam_id": [ - 25 - ], - "invited_by_steam_id": [ - 25 - ], - "steam_id": [ - 25 + "news_articles_var_pop_fields": { + "issue_number": [ + 26 ], "__typename": [ - 63 + 64 ] }, - "my_friends_variance_order_by": { - "friend_steam_id": [ - 1736 - ], - "invited_by_steam_id": [ - 1736 + "news_articles_var_samp_fields": { + "issue_number": [ + 26 ], - "steam_id": [ - 1736 + "__typename": [ + 64 + ] + }, + "news_articles_variance_fields": { + "issue_number": [ + 26 ], "__typename": [ - 63 + 64 ] }, "notifications": { "actions": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "created_at": [ - 2922 + 3191 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_read": [ 3 ], "message": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "role": [ - 536 + 778 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "type": [ - 496 + 738 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate": { "aggregate": [ - 1690 + 1959 ], "nodes": [ - 1684 + 1953 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_bool_exp": { "bool_and": [ - 1687 + 1956 ], "bool_or": [ - 1688 + 1957 ], "count": [ - 1689 + 1958 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_bool_exp_bool_and": { "arguments": [ - 1713 + 1982 ], "distinct": [ 3 ], "filter": [ - 1696 + 1965 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_bool_exp_bool_or": { "arguments": [ - 1714 + 1983 ], "distinct": [ 3 ], "filter": [ - 1696 + 1965 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_bool_exp_count": { "arguments": [ - 1712 + 1981 ], "distinct": [ 3 ], "filter": [ - 1696 + 1965 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_fields": { "avg": [ - 1694 + 1963 ], "count": [ - 34, + 35, { "columns": [ - 1712, + 1981, "[notifications_select_column!]" ], "distinct": [ @@ -32849,426 +37779,426 @@ export default { } ], "max": [ - 1703 + 1972 ], "min": [ - 1705 + 1974 ], "stddev": [ - 1716 + 1985 ], "stddev_pop": [ - 1718 + 1987 ], "stddev_samp": [ - 1720 + 1989 ], "sum": [ - 1724 + 1993 ], "var_pop": [ - 1728 + 1997 ], "var_samp": [ - 1730 + 1999 ], "variance": [ - 1732 + 2001 ], "__typename": [ - 63 + 64 ] }, "notifications_aggregate_order_by": { "avg": [ - 1695 + 1964 ], "count": [ - 1736 + 2005 ], "max": [ - 1704 + 1973 ], "min": [ - 1706 + 1975 ], "stddev": [ - 1717 + 1986 ], "stddev_pop": [ - 1719 + 1988 ], "stddev_samp": [ - 1721 + 1990 ], "sum": [ - 1725 + 1994 ], "var_pop": [ - 1729 + 1998 ], "var_samp": [ - 1731 + 2000 ], "variance": [ - 1733 + 2002 ], "__typename": [ - 63 + 64 ] }, "notifications_append_input": { "actions": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "notifications_arr_rel_insert_input": { "data": [ - 1702 + 1971 ], "on_conflict": [ - 1708 + 1977 ], "__typename": [ - 63 + 64 ] }, "notifications_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_avg_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_bool_exp": { "_and": [ - 1696 + 1965 ], "_not": [ - 1696 + 1965 ], "_or": [ - 1696 + 1965 ], "actions": [ - 948 + 1190 ], "created_at": [ - 2923 + 3192 ], "deletable": [ 4 ], "deleted_at": [ - 2923 + 3192 ], "entity_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "is_read": [ 4 ], "message": [ - 65 + 66 ], "player": [ - 2607 + 2876 ], "role": [ - 537 + 779 ], "steam_id": [ - 163 + 164 ], "title": [ - 65 + 66 ], "type": [ - 497 + 739 ], "__typename": [ - 63 + 64 ] }, "notifications_constraint": {}, "notifications_delete_at_path_input": { "actions": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "notifications_delete_elem_input": { "actions": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "notifications_delete_key_input": { "actions": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "notifications_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "notifications_insert_input": { "actions": [ - 946 + 1188 ], "created_at": [ - 2922 + 3191 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_read": [ 3 ], "message": [ - 63 + 64 ], "player": [ - 2614 + 2883 ], "role": [ - 536 + 778 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "type": [ - 496 + 738 ], "__typename": [ - 63 + 64 ] }, "notifications_max_fields": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "message": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "notifications_max_order_by": { "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "entity_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "message": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_min_fields": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "message": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "notifications_min_order_by": { "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "entity_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "message": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1684 + 1953 ], "__typename": [ - 63 + 64 ] }, "notifications_on_conflict": { "constraint": [ - 1697 + 1966 ], "update_columns": [ - 1726 + 1995 ], "where": [ - 1696 + 1965 ], "__typename": [ - 63 + 64 ] }, "notifications_order_by": { "actions": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "deletable": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "entity_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "is_read": [ - 1736 + 2005 ], "message": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "role": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "title": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "notifications_prepend_input": { "actions": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "notifications_select_column": {}, @@ -33276,338 +38206,338 @@ export default { "notifications_select_column_notifications_aggregate_bool_exp_bool_or_arguments_columns": {}, "notifications_set_input": { "actions": [ - 946 + 1188 ], "created_at": [ - 2922 + 3191 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_read": [ 3 ], "message": [ - 63 + 64 ], "role": [ - 536 + 778 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "type": [ - 496 + 738 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_stddev_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_stream_cursor_input": { "initial_value": [ - 1723 + 1992 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "notifications_stream_cursor_value_input": { "actions": [ - 946 + 1188 ], "created_at": [ - 2922 + 3191 ], "deletable": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "entity_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_read": [ 3 ], "message": [ - 63 + 64 ], "role": [ - 536 + 778 ], "steam_id": [ - 162 + 163 ], "title": [ - 63 + 64 ], "type": [ - 496 + 738 ], "__typename": [ - 63 + 64 ] }, "notifications_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "notifications_sum_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_update_column": {}, "notifications_updates": { "_append": [ - 1692 + 1961 ], "_delete_at_path": [ - 1698 + 1967 ], "_delete_elem": [ - 1699 + 1968 ], "_delete_key": [ - 1700 + 1969 ], "_inc": [ - 1701 + 1970 ], "_prepend": [ - 1711 + 1980 ], "_set": [ - 1715 + 1984 ], "where": [ - 1696 + 1965 ], "__typename": [ - 63 + 64 ] }, "notifications_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_var_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_var_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "notifications_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "notifications_variance_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "numeric": {}, "numeric_comparison_exp": { "_eq": [ - 1734 + 2003 ], "_gt": [ - 1734 + 2003 ], "_gte": [ - 1734 + 2003 ], "_in": [ - 1734 + 2003 ], "_is_null": [ 3 ], "_lt": [ - 1734 + 2003 ], "_lte": [ - 1734 + 2003 ], "_neq": [ - 1734 + 2003 ], "_nin": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "order_by": {}, "pending_match_import_players": { "created_at": [ - 2922 + 3191 ], "pending_match_import": [ - 1778 + 2047 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_aggregate": { "aggregate": [ - 1741 + 2010 ], "nodes": [ - 1737 + 2006 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_aggregate_bool_exp": { "count": [ - 1740 + 2009 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_aggregate_bool_exp_count": { "arguments": [ - 1758 + 2027 ], "distinct": [ 3 ], "filter": [ - 1746 + 2015 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_aggregate_fields": { "avg": [ - 1744 + 2013 ], "count": [ - 34, + 35, { "columns": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "distinct": [ @@ -33616,585 +38546,585 @@ export default { } ], "max": [ - 1750 + 2019 ], "min": [ - 1752 + 2021 ], "stddev": [ - 1760 + 2029 ], "stddev_pop": [ - 1762 + 2031 ], "stddev_samp": [ - 1764 + 2033 ], "sum": [ - 1768 + 2037 ], "var_pop": [ - 1772 + 2041 ], "var_samp": [ - 1774 + 2043 ], "variance": [ - 1776 + 2045 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_aggregate_order_by": { "avg": [ - 1745 + 2014 ], "count": [ - 1736 + 2005 ], "max": [ - 1751 + 2020 ], "min": [ - 1753 + 2022 ], "stddev": [ - 1761 + 2030 ], "stddev_pop": [ - 1763 + 2032 ], "stddev_samp": [ - 1765 + 2034 ], "sum": [ - 1769 + 2038 ], "var_pop": [ - 1773 + 2042 ], "var_samp": [ - 1775 + 2044 ], "variance": [ - 1777 + 2046 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_arr_rel_insert_input": { "data": [ - 1749 + 2018 ], "on_conflict": [ - 1755 + 2024 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_avg_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_avg_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_bool_exp": { "_and": [ - 1746 + 2015 ], "_not": [ - 1746 + 2015 ], "_or": [ - 1746 + 2015 ], "created_at": [ - 2923 + 3192 ], "pending_match_import": [ - 1782 + 2051 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "valve_match_id": [ - 1735 + 2004 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_constraint": {}, "pending_match_import_players_inc_input": { "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_insert_input": { "created_at": [ - 2922 + 3191 ], "pending_match_import": [ - 1789 + 2058 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_max_fields": { "created_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_max_order_by": { "created_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_min_fields": { "created_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_min_order_by": { "created_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1737 + 2006 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_on_conflict": { "constraint": [ - 1747 + 2016 ], "update_columns": [ - 1770 + 2039 ], "where": [ - 1746 + 2015 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_order_by": { "created_at": [ - 1736 + 2005 ], "pending_match_import": [ - 1791 + 2060 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_pk_columns_input": { "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_select_column": {}, "pending_match_import_players_set_input": { "created_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stddev_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stream_cursor_input": { "initial_value": [ - 1767 + 2036 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_sum_fields": { "steam_id": [ - 162 + 163 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_sum_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_update_column": {}, "pending_match_import_players_updates": { "_inc": [ - 1748 + 2017 ], "_set": [ - 1759 + 2028 ], "where": [ - 1746 + 2015 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_var_pop_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_var_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_var_samp_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_var_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_variance_fields": { "steam_id": [ - 25 + 26 ], "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_import_players_variance_order_by": { "steam_id": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "players": [ - 1737, + 2006, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "players_aggregate": [ - 1738, + 2007, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_aggregate": { "aggregate": [ - 1780 + 2049 ], "nodes": [ - 1778 + 2047 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_aggregate_fields": { "avg": [ - 1781 + 2050 ], "count": [ - 34, + 35, { "columns": [ - 1793, + 2062, "[pending_match_imports_select_column!]" ], "distinct": [ @@ -34203,519 +39133,519 @@ export default { } ], "max": [ - 1786 + 2055 ], "min": [ - 1787 + 2056 ], "stddev": [ - 1795 + 2064 ], "stddev_pop": [ - 1796 + 2065 ], "stddev_samp": [ - 1797 + 2066 ], "sum": [ - 1800 + 2069 ], "var_pop": [ - 1803 + 2072 ], "var_samp": [ - 1804 + 2073 ], "variance": [ - 1805 + 2074 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_avg_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_bool_exp": { "_and": [ - 1782 + 2051 ], "_not": [ - 1782 + 2051 ], "_or": [ - 1782 + 2051 ], "created_at": [ - 2923 + 3192 ], "demo_url": [ - 65 + 66 ], "error": [ - 65 + 66 ], "map_name": [ - 65 + 66 ], "match_start_time": [ - 2923 + 3192 ], "players": [ - 1746 + 2015 ], "players_aggregate": [ - 1739 + 2008 ], "share_code": [ - 65 + 66 ], "status": [ - 65 + 66 ], "updated_at": [ - 2923 + 3192 ], "valve_match_id": [ - 1735 + 2004 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_constraint": {}, "pending_match_imports_inc_input": { "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_insert_input": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "players": [ - 1743 + 2012 ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_max_fields": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_min_fields": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1778 + 2047 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_obj_rel_insert_input": { "data": [ - 1785 + 2054 ], "on_conflict": [ - 1790 + 2059 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_on_conflict": { "constraint": [ - 1783 + 2052 ], "update_columns": [ - 1801 + 2070 ], "where": [ - 1782 + 2051 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_order_by": { "created_at": [ - 1736 + 2005 ], "demo_url": [ - 1736 + 2005 ], "error": [ - 1736 + 2005 ], "map_name": [ - 1736 + 2005 ], "match_start_time": [ - 1736 + 2005 ], "players_aggregate": [ - 1742 + 2011 ], "share_code": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "valve_match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_pk_columns_input": { "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_select_column": {}, "pending_match_imports_set_input": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_stddev_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_stddev_pop_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_stddev_samp_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_stream_cursor_input": { "initial_value": [ - 1799 + 2068 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "demo_url": [ - 63 + 64 ], "error": [ - 63 + 64 ], "map_name": [ - 63 + 64 ], "match_start_time": [ - 2922 + 3191 ], "share_code": [ - 63 + 64 ], "status": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_sum_fields": { "valve_match_id": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_update_column": {}, "pending_match_imports_updates": { "_inc": [ - 1784 + 2053 ], "_set": [ - 1794 + 2063 ], "where": [ - 1782 + 2051 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_var_pop_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_var_samp_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "pending_match_imports_variance_fields": { "valve_match_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo": { "attacker": [ - 2603 + 2872 ], "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_aggregate": { "aggregate": [ - 1808 + 2077 ], "nodes": [ - 1806 + 2075 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_aggregate_fields": { "avg": [ - 1809 + 2078 ], "count": [ - 34, + 35, { "columns": [ - 1820, + 2089, "[player_aim_stats_demo_select_column!]" ], "distinct": [ @@ -34724,1211 +39654,1211 @@ export default { } ], "max": [ - 1814 + 2083 ], "min": [ - 1815 + 2084 ], "stddev": [ - 1822 + 2091 ], "stddev_pop": [ - 1823 + 2092 ], "stddev_samp": [ - 1824 + 2093 ], "sum": [ - 1827 + 2096 ], "var_pop": [ - 1830 + 2099 ], "var_samp": [ - 1831 + 2100 ], "variance": [ - 1832 + 2101 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_avg_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_bool_exp": { "_and": [ - 1810 + 2079 ], "_not": [ - 1810 + 2079 ], "_or": [ - 1810 + 2079 ], "attacker": [ - 2607 + 2876 ], "attacker_steam_id": [ - 163 + 164 ], "counter_strafe_eligible_shots": [ - 35 + 36 ], "counter_strafed_shots": [ - 35 + 36 ], "crosshair_angle_count": [ - 35 + 36 ], "crosshair_angle_sum_deg": [ - 1735 + 2004 ], "first_bullet_hits": [ - 35 + 36 ], "first_bullet_shots": [ - 35 + 36 ], "headshot_hits": [ - 35 + 36 ], "hits": [ - 35 + 36 ], "hits_at_spotted": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "non_awp_hits": [ - 35 + 36 ], "on_target_frames": [ - 35 + 36 ], "shots_at_spotted": [ - 35 + 36 ], "spray_hits": [ - 35 + 36 ], "spray_shots": [ - 35 + 36 ], "time_to_damage_count": [ - 35 + 36 ], "time_to_damage_sum_s": [ - 1735 + 2004 ], "total_engagement_frames": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_constraint": {}, "player_aim_stats_demo_inc_input": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_insert_input": { "attacker": [ - 2614 + 2883 ], "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_max_fields": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_min_fields": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1806 + 2075 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_on_conflict": { "constraint": [ - 1811 + 2080 ], "update_columns": [ - 1828 + 2097 ], "where": [ - 1810 + 2079 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_order_by": { "attacker": [ - 2616 + 2885 ], "attacker_steam_id": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_pk_columns_input": { "attacker_steam_id": [ - 162 + 163 ], "match_map_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_select_column": {}, "player_aim_stats_demo_set_input": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_stddev_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_stddev_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_stddev_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_stream_cursor_input": { "initial_value": [ - 1826 + 2095 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_stream_cursor_value_input": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_sum_fields": { "attacker_steam_id": [ - 162 + 163 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_update_column": {}, "player_aim_stats_demo_updates": { "_inc": [ - 1812 + 2081 ], "_set": [ - 1821 + 2090 ], "where": [ - 1810 + 2079 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_var_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_var_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_stats_demo_variance_fields": { "attacker_steam_id": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_aggregate": { "aggregate": [ - 1837 + 2106 ], "nodes": [ - 1833 + 2102 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_aggregate_bool_exp": { "count": [ - 1836 + 2105 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_aggregate_bool_exp_count": { "arguments": [ - 1854 + 2123 ], "distinct": [ 3 ], "filter": [ - 1842 + 2111 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_aggregate_fields": { "avg": [ - 1840 + 2109 ], "count": [ - 34, + 35, { "columns": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "distinct": [ @@ -35937,963 +40867,963 @@ export default { } ], "max": [ - 1846 + 2115 ], "min": [ - 1848 + 2117 ], "stddev": [ - 1856 + 2125 ], "stddev_pop": [ - 1858 + 2127 ], "stddev_samp": [ - 1860 + 2129 ], "sum": [ - 1864 + 2133 ], "var_pop": [ - 1868 + 2137 ], "var_samp": [ - 1870 + 2139 ], "variance": [ - 1872 + 2141 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_aggregate_order_by": { "avg": [ - 1841 + 2110 ], "count": [ - 1736 + 2005 ], "max": [ - 1847 + 2116 ], "min": [ - 1849 + 2118 ], "stddev": [ - 1857 + 2126 ], "stddev_pop": [ - 1859 + 2128 ], "stddev_samp": [ - 1861 + 2130 ], "sum": [ - 1865 + 2134 ], "var_pop": [ - 1869 + 2138 ], "var_samp": [ - 1871 + 2140 ], "variance": [ - 1873 + 2142 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_arr_rel_insert_input": { "data": [ - 1845 + 2114 ], "on_conflict": [ - 1851 + 2120 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_avg_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_avg_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_bool_exp": { "_and": [ - 1842 + 2111 ], "_not": [ - 1842 + 2111 ], "_or": [ - 1842 + 2111 ], "first_bullet_hits": [ - 35 + 36 ], "first_bullet_shots": [ - 35 + 36 ], "hits": [ - 35 + 36 ], "hits_spotted": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "shots": [ - 35 + 36 ], "shots_spotted": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "weapon_class": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_constraint": {}, "player_aim_weapon_stats_inc_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_insert_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_max_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_max_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_min_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_min_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1833 + 2102 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_on_conflict": { "constraint": [ - 1843 + 2112 ], "update_columns": [ - 1866 + 2135 ], "where": [ - 1842 + 2111 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_pk_columns_input": { "match_map_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_select_column": {}, "player_aim_weapon_stats_set_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_pop_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_pop_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_samp_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stddev_samp_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stream_cursor_input": { "initial_value": [ - 1863 + 2132 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_stream_cursor_value_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_sum_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_sum_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_update_column": {}, "player_aim_weapon_stats_updates": { "_inc": [ - 1844 + 2113 ], "_set": [ - 1855 + 2124 ], "where": [ - 1842 + 2111 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_var_pop_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_var_pop_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_var_samp_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_var_samp_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_variance_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_aim_weapon_stats_variance_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists": { "attacked_player": [ - 2603 + 2872 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "flash": [ 3 @@ -36902,115 +41832,115 @@ export default { 3 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate": { "aggregate": [ - 1880 + 2149 ], "nodes": [ - 1874 + 2143 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_bool_exp": { "bool_and": [ - 1877 + 2146 ], "bool_or": [ - 1878 + 2147 ], "count": [ - 1879 + 2148 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_bool_exp_bool_and": { "arguments": [ - 1898 + 2167 ], "distinct": [ 3 ], "filter": [ - 1885 + 2154 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_bool_exp_bool_or": { "arguments": [ - 1899 + 2168 ], "distinct": [ 3 ], "filter": [ - 1885 + 2154 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_bool_exp_count": { "arguments": [ - 1897 + 2166 ], "distinct": [ 3 ], "filter": [ - 1885 + 2154 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_fields": { "avg": [ - 1883 + 2152 ], "count": [ - 34, + 35, { "columns": [ - 1897, + 2166, "[player_assists_select_column!]" ], "distinct": [ @@ -37019,140 +41949,140 @@ export default { } ], "max": [ - 1889 + 2158 ], "min": [ - 1891 + 2160 ], "stddev": [ - 1901 + 2170 ], "stddev_pop": [ - 1903 + 2172 ], "stddev_samp": [ - 1905 + 2174 ], "sum": [ - 1909 + 2178 ], "var_pop": [ - 1913 + 2182 ], "var_samp": [ - 1915 + 2184 ], "variance": [ - 1917 + 2186 ], "__typename": [ - 63 + 64 ] }, "player_assists_aggregate_order_by": { "avg": [ - 1884 + 2153 ], "count": [ - 1736 + 2005 ], "max": [ - 1890 + 2159 ], "min": [ - 1892 + 2161 ], "stddev": [ - 1902 + 2171 ], "stddev_pop": [ - 1904 + 2173 ], "stddev_samp": [ - 1906 + 2175 ], "sum": [ - 1910 + 2179 ], "var_pop": [ - 1914 + 2183 ], "var_samp": [ - 1916 + 2185 ], "variance": [ - 1918 + 2187 ], "__typename": [ - 63 + 64 ] }, "player_assists_arr_rel_insert_input": { "data": [ - 1888 + 2157 ], "on_conflict": [ - 1894 + 2163 ], "__typename": [ - 63 + 64 ] }, "player_assists_avg_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_avg_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_bool_exp": { "_and": [ - 1885 + 2154 ], "_not": [ - 1885 + 2154 ], "_or": [ - 1885 + 2154 ], "attacked_player": [ - 2607 + 2876 ], "attacked_steam_id": [ - 163 + 164 ], "attacked_team": [ - 65 + 66 ], "attacker_steam_id": [ - 163 + 164 ], "attacker_team": [ - 65 + 66 ], "deleted_at": [ - 2923 + 3192 ], "flash": [ 4 @@ -37161,310 +42091,310 @@ export default { 4 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "round": [ - 35 + 36 ], "time": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "player_assists_constraint": {}, "player_assists_inc_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_assists_insert_input": { "attacked_player": [ - 2614 + 2883 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "flash": [ 3 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_max_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_max_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_min_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_min_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1874 + 2143 ], "__typename": [ - 63 + 64 ] }, "player_assists_on_conflict": { "constraint": [ - 1886 + 2155 ], "update_columns": [ - 1911 + 2180 ], "where": [ - 1885 + 2154 ], "__typename": [ - 63 + 64 ] }, "player_assists_order_by": { "attacked_player": [ - 2616 + 2885 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "flash": [ - 1736 + 2005 ], "is_team_assist": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_pk_columns_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "match_map_id": [ - 3319 + 3588 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_select_column": {}, @@ -37472,369 +42402,369 @@ export default { "player_assists_select_column_player_assists_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_assists_set_input": { "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "flash": [ 3 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_stream_cursor_input": { "initial_value": [ - 1908 + 2177 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_assists_stream_cursor_value_input": { "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "flash": [ 3 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_assists_sum_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_assists_sum_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_update_column": {}, "player_assists_updates": { "_inc": [ - 1887 + 2156 ], "_set": [ - 1900 + 2169 ], "where": [ - 1885 + 2154 ], "__typename": [ - 63 + 64 ] }, "player_assists_var_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_var_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_assists_variance_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_assists_variance_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "counter_strafe_pct": [ - 1734 + 2003 ], "crosshair_deg": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "maps": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "time_to_damage_s": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_aggregate": { "aggregate": [ - 1921 + 2190 ], "nodes": [ - 1919 + 2188 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_aggregate_fields": { "avg": [ - 1922 + 2191 ], "count": [ - 34, + 35, { "columns": [ - 1927, + 2196, "[player_career_stats_v_select_column!]" ], "distinct": [ @@ -37843,871 +42773,871 @@ export default { } ], "max": [ - 1924 + 2193 ], "min": [ - 1925 + 2194 ], "stddev": [ - 1928 + 2197 ], "stddev_pop": [ - 1929 + 2198 ], "stddev_samp": [ - 1930 + 2199 ], "sum": [ - 1933 + 2202 ], "var_pop": [ - 1934 + 2203 ], "var_samp": [ - 1935 + 2204 ], "variance": [ - 1936 + 2205 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_avg_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_bool_exp": { "_and": [ - 1923 + 2192 ], "_not": [ - 1923 + 2192 ], "_or": [ - 1923 + 2192 ], "accuracy": [ - 1735 + 2004 ], "accuracy_spotted": [ - 1735 + 2004 ], "counter_strafe_pct": [ - 1735 + 2004 ], "crosshair_deg": [ - 1735 + 2004 ], "enemy_blind_pr": [ - 1735 + 2004 ], "flash_assists_pr": [ - 1735 + 2004 ], "hs_pct": [ - 1735 + 2004 ], "kast_pct": [ - 1735 + 2004 ], "maps": [ - 35 + 36 ], "premier_rank": [ - 35 + 36 ], "rounds": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "survival_pct": [ - 1735 + 2004 ], "time_to_damage_s": [ - 1735 + 2004 ], "traded_death_pct": [ - 1735 + 2004 ], "util_efficiency": [ - 1735 + 2004 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_max_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "counter_strafe_pct": [ - 1734 + 2003 ], "crosshair_deg": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "maps": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "time_to_damage_s": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_min_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "counter_strafe_pct": [ - 1734 + 2003 ], "crosshair_deg": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "maps": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "time_to_damage_s": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_order_by": { "accuracy": [ - 1736 + 2005 ], "accuracy_spotted": [ - 1736 + 2005 ], "counter_strafe_pct": [ - 1736 + 2005 ], "crosshair_deg": [ - 1736 + 2005 ], "enemy_blind_pr": [ - 1736 + 2005 ], "flash_assists_pr": [ - 1736 + 2005 ], "hs_pct": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "maps": [ - 1736 + 2005 ], "premier_rank": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "survival_pct": [ - 1736 + 2005 ], "time_to_damage_s": [ - 1736 + 2005 ], "traded_death_pct": [ - 1736 + 2005 ], "util_efficiency": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_select_column": {}, "player_career_stats_v_stddev_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_stddev_pop_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_stddev_samp_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_stream_cursor_input": { "initial_value": [ - 1932 + 2201 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_stream_cursor_value_input": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "counter_strafe_pct": [ - 1734 + 2003 ], "crosshair_deg": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "maps": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "time_to_damage_s": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_sum_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "counter_strafe_pct": [ - 1734 + 2003 ], "crosshair_deg": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "maps": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "time_to_damage_s": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_var_pop_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_var_samp_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_career_stats_v_variance_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "crosshair_deg": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "time_to_damage_s": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_player": [ - 2603 + 2872 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "round": [ - 1734 + 2003 ], "team_damage": [ 3 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_aggregate": { "aggregate": [ - 1941 + 2210 ], "nodes": [ - 1937 + 2206 ], "__typename": [ - 63 + 64 ] }, "player_damages_aggregate_bool_exp": { "count": [ - 1940 + 2209 ], "__typename": [ - 63 + 64 ] }, "player_damages_aggregate_bool_exp_count": { "arguments": [ - 1958 + 2227 ], "distinct": [ 3 ], "filter": [ - 1946 + 2215 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_damages_aggregate_fields": { "avg": [ - 1944 + 2213 ], "count": [ - 34, + 35, { "columns": [ - 1958, + 2227, "[player_damages_select_column!]" ], "distinct": [ @@ -38716,1330 +43646,1330 @@ export default { } ], "max": [ - 1950 + 2219 ], "min": [ - 1952 + 2221 ], "stddev": [ - 1960 + 2229 ], "stddev_pop": [ - 1962 + 2231 ], "stddev_samp": [ - 1964 + 2233 ], "sum": [ - 1968 + 2237 ], "var_pop": [ - 1972 + 2241 ], "var_samp": [ - 1974 + 2243 ], "variance": [ - 1976 + 2245 ], "__typename": [ - 63 + 64 ] }, "player_damages_aggregate_order_by": { "avg": [ - 1945 + 2214 ], "count": [ - 1736 + 2005 ], "max": [ - 1951 + 2220 ], "min": [ - 1953 + 2222 ], "stddev": [ - 1961 + 2230 ], "stddev_pop": [ - 1963 + 2232 ], "stddev_samp": [ - 1965 + 2234 ], "sum": [ - 1969 + 2238 ], "var_pop": [ - 1973 + 2242 ], "var_samp": [ - 1975 + 2244 ], "variance": [ - 1977 + 2246 ], "__typename": [ - 63 + 64 ] }, "player_damages_arr_rel_insert_input": { "data": [ - 1949 + 2218 ], "on_conflict": [ - 1955 + 2224 ], "__typename": [ - 63 + 64 ] }, "player_damages_avg_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_avg_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_bool_exp": { "_and": [ - 1946 + 2215 ], "_not": [ - 1946 + 2215 ], "_or": [ - 1946 + 2215 ], "armor": [ - 35 + 36 ], "attacked_location": [ - 65 + 66 ], "attacked_location_coordinates": [ - 65 + 66 ], "attacked_player": [ - 2607 + 2876 ], "attacked_steam_id": [ - 163 + 164 ], "attacked_team": [ - 65 + 66 ], "attacker_location": [ - 65 + 66 ], "attacker_location_coordinates": [ - 65 + 66 ], "attacker_steam_id": [ - 163 + 164 ], "attacker_team": [ - 65 + 66 ], "damage": [ - 35 + 36 ], "damage_armor": [ - 35 + 36 ], "deleted_at": [ - 2923 + 3192 ], "health": [ - 35 + 36 ], "hitgroup": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "round": [ - 1735 + 2004 ], "team_damage": [ 4 ], "time": [ - 2923 + 3192 ], "with": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "player_damages_constraint": {}, "player_damages_inc_input": { "armor": [ - 34 + 35 ], "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "health": [ - 34 + 35 ], "round": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_damages_insert_input": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_player": [ - 2614 + 2883 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "round": [ - 1734 + 2003 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_max_fields": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 1734 + 2003 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_max_order_by": { "armor": [ - 1736 + 2005 ], "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_min_fields": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 1734 + 2003 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_min_order_by": { "armor": [ - 1736 + 2005 ], "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1937 + 2206 ], "__typename": [ - 63 + 64 ] }, "player_damages_on_conflict": { "constraint": [ - 1947 + 2216 ], "update_columns": [ - 1970 + 2239 ], "where": [ - 1946 + 2215 ], "__typename": [ - 63 + 64 ] }, "player_damages_order_by": { "armor": [ - 1736 + 2005 ], "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_player": [ - 2616 + 2885 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "round": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_pk_columns_input": { "id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_damages_select_column": {}, "player_damages_set_input": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 1734 + 2003 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_pop_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_pop_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_samp_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_stddev_samp_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_stream_cursor_input": { "initial_value": [ - 1967 + 2236 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_damages_stream_cursor_value_input": { "armor": [ - 34 + 35 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "deleted_at": [ - 2922 + 3191 ], "health": [ - 34 + 35 ], "hitgroup": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 1734 + 2003 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_damages_sum_fields": { "armor": [ - 34 + 35 ], "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage": [ - 34 + 35 ], "damage_armor": [ - 34 + 35 ], "health": [ - 34 + 35 ], "round": [ - 1734 + 2003 ], "__typename": [ - 63 + 64 ] }, "player_damages_sum_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_update_column": {}, "player_damages_updates": { "_inc": [ - 1948 + 2217 ], "_set": [ - 1959 + 2228 ], "where": [ - 1946 + 2215 ], "__typename": [ - 63 + 64 ] }, "player_damages_var_pop_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_var_pop_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_var_samp_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_var_samp_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_damages_variance_fields": { "armor": [ - 25 + 26 ], "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_armor": [ - 25 + 26 ], "health": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_damages_variance_order_by": { "armor": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_armor": [ - 1736 + 2005 ], "health": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_elo": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player": [ - 2603 + 2872 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "player_elo_aggregate": { "aggregate": [ - 1980 + 2249 ], "nodes": [ - 1978 + 2247 ], "__typename": [ - 63 + 64 ] }, "player_elo_aggregate_fields": { "avg": [ - 1981 + 2250 ], "count": [ - 34, + 35, { "columns": [ - 1992, + 2261, "[player_elo_select_column!]" ], "distinct": [ @@ -40048,1304 +44978,1304 @@ export default { } ], "max": [ - 1986 + 2255 ], "min": [ - 1987 + 2256 ], "stddev": [ - 1994 + 2263 ], "stddev_pop": [ - 1995 + 2264 ], "stddev_samp": [ - 1996 + 2265 ], "sum": [ - 1999 + 2268 ], "var_pop": [ - 2002 + 2271 ], "var_samp": [ - 2003 + 2272 ], "variance": [ - 2004 + 2273 ], "__typename": [ - 63 + 64 ] }, "player_elo_avg_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_bool_exp": { "_and": [ - 1982 + 2251 ], "_not": [ - 1982 + 2251 ], "_or": [ - 1982 + 2251 ], "actual_score": [ - 796 + 1038 ], "assists": [ - 35 + 36 ], "change": [ - 1735 + 2004 ], "created_at": [ - 2923 + 3192 ], "current": [ - 1735 + 2004 ], "damage": [ - 35 + 36 ], "damage_percent": [ - 796 + 1038 ], "deaths": [ - 35 + 36 ], "expected_score": [ - 796 + 1038 ], "impact": [ - 1735 + 2004 ], "k_factor": [ - 35 + 36 ], "kda": [ - 796 + 1038 ], "kills": [ - 35 + 36 ], "map_losses": [ - 35 + 36 ], "map_wins": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "opponent_team_elo_avg": [ - 796 + 1038 ], "performance_multiplier": [ - 796 + 1038 ], "player": [ - 2607 + 2876 ], "player_team_elo_avg": [ - 796 + 1038 ], "series_multiplier": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "team_avg_kda": [ - 796 + 1038 ], "type": [ - 476 + 718 ], "__typename": [ - 63 + 64 ] }, "player_elo_constraint": {}, "player_elo_inc_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_elo_insert_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player": [ - 2614 + 2883 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "player_elo_max_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_elo_min_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_elo_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 1978 + 2247 ], "__typename": [ - 63 + 64 ] }, "player_elo_on_conflict": { "constraint": [ - 1983 + 2252 ], "update_columns": [ - 2000 + 2269 ], "where": [ - 1982 + 2251 ], "__typename": [ - 63 + 64 ] }, "player_elo_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "change": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "current": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_elo_pk_columns_input": { "match_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "player_elo_select_column": {}, "player_elo_set_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "player_elo_stddev_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_stddev_pop_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_stddev_samp_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_stream_cursor_input": { "initial_value": [ - 1998 + 2267 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_elo_stream_cursor_value_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "created_at": [ - 2922 + 3191 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 475 + 717 ], "__typename": [ - 63 + 64 ] }, "player_elo_sum_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "change": [ - 1734 + 2003 ], "current": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 1734 + 2003 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_avg_kda": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_elo_update_column": {}, "player_elo_updates": { "_inc": [ - 1984 + 2253 ], "_set": [ - 1993 + 2262 ], "where": [ - 1982 + 2251 ], "__typename": [ - 63 + 64 ] }, "player_elo_var_pop_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_var_samp_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_elo_variance_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "change": [ - 25 + 26 ], "current": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "player": [ - 2603 + 2872 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_aggregate": { "aggregate": [ - 2009 + 2278 ], "nodes": [ - 2005 + 2274 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_aggregate_bool_exp": { "count": [ - 2008 + 2277 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2026 + 2295 ], "distinct": [ 3 ], "filter": [ - 2014 + 2283 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_aggregate_fields": { "avg": [ - 2012 + 2281 ], "count": [ - 34, + 35, { "columns": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "distinct": [ @@ -41354,825 +46284,825 @@ export default { } ], "max": [ - 2018 + 2287 ], "min": [ - 2020 + 2289 ], "stddev": [ - 2028 + 2297 ], "stddev_pop": [ - 2030 + 2299 ], "stddev_samp": [ - 2032 + 2301 ], "sum": [ - 2036 + 2305 ], "var_pop": [ - 2040 + 2309 ], "var_samp": [ - 2042 + 2311 ], "variance": [ - 2044 + 2313 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_aggregate_order_by": { "avg": [ - 2013 + 2282 ], "count": [ - 1736 + 2005 ], "max": [ - 2019 + 2288 ], "min": [ - 2021 + 2290 ], "stddev": [ - 2029 + 2298 ], "stddev_pop": [ - 2031 + 2300 ], "stddev_samp": [ - 2033 + 2302 ], "sum": [ - 2037 + 2306 ], "var_pop": [ - 2041 + 2310 ], "var_samp": [ - 2043 + 2312 ], "variance": [ - 2045 + 2314 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_arr_rel_insert_input": { "data": [ - 2017 + 2286 ], "on_conflict": [ - 2023 + 2292 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_avg_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_avg_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_bool_exp": { "_and": [ - 2014 + 2283 ], "_not": [ - 2014 + 2283 ], "_or": [ - 2014 + 2283 ], "elo": [ - 35 + 36 ], "id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "observed_at": [ - 2923 + 3192 ], "player": [ - 2607 + 2876 ], "previous_rank": [ - 35 + 36 ], "skill_level": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_constraint": {}, "player_faceit_rank_history_inc_input": { "elo": [ - 34 + 35 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_insert_input": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "player": [ - 2614 + 2883 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_max_fields": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_max_order_by": { "elo": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_min_fields": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_min_order_by": { "elo": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2005 + 2274 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_on_conflict": { "constraint": [ - 2015 + 2284 ], "update_columns": [ - 2038 + 2307 ], "where": [ - 2014 + 2283 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_order_by": { "elo": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_select_column": {}, "player_faceit_rank_history_set_input": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_pop_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_pop_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_samp_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stddev_samp_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stream_cursor_input": { "initial_value": [ - 2035 + 2304 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_stream_cursor_value_input": { "elo": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_sum_fields": { "elo": [ - 34 + 35 ], "previous_rank": [ - 34 + 35 ], "skill_level": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_sum_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_update_column": {}, "player_faceit_rank_history_updates": { "_inc": [ - 2016 + 2285 ], "_set": [ - 2027 + 2296 ], "where": [ - 2014 + 2283 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_var_pop_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_var_pop_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_var_samp_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_var_samp_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_variance_fields": { "elo": [ - 25 + 26 ], "previous_rank": [ - 25 + 26 ], "skill_level": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_faceit_rank_history_variance_order_by": { "elo": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "skill_level": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "blinded": [ - 2603 + 2872 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "team_flash": [ 3 ], "thrown_by": [ - 2603 + 2872 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate": { "aggregate": [ - 2052 + 2321 ], "nodes": [ - 2046 + 2315 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_bool_exp": { "bool_and": [ - 2049 + 2318 ], "bool_or": [ - 2050 + 2319 ], "count": [ - 2051 + 2320 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_bool_exp_bool_and": { "arguments": [ - 2070 + 2339 ], "distinct": [ 3 ], "filter": [ - 2057 + 2326 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_bool_exp_bool_or": { "arguments": [ - 2071 + 2340 ], "distinct": [ 3 ], "filter": [ - 2057 + 2326 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_bool_exp_count": { "arguments": [ - 2069 + 2338 ], "distinct": [ 3 ], "filter": [ - 2057 + 2326 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_fields": { "avg": [ - 2055 + 2324 ], "count": [ - 34, + 35, { "columns": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "distinct": [ @@ -42181,434 +47111,434 @@ export default { } ], "max": [ - 2061 + 2330 ], "min": [ - 2063 + 2332 ], "stddev": [ - 2073 + 2342 ], "stddev_pop": [ - 2075 + 2344 ], "stddev_samp": [ - 2077 + 2346 ], "sum": [ - 2081 + 2350 ], "var_pop": [ - 2085 + 2354 ], "var_samp": [ - 2087 + 2356 ], "variance": [ - 2089 + 2358 ], "__typename": [ - 63 + 64 ] }, "player_flashes_aggregate_order_by": { "avg": [ - 2056 + 2325 ], "count": [ - 1736 + 2005 ], "max": [ - 2062 + 2331 ], "min": [ - 2064 + 2333 ], "stddev": [ - 2074 + 2343 ], "stddev_pop": [ - 2076 + 2345 ], "stddev_samp": [ - 2078 + 2347 ], "sum": [ - 2082 + 2351 ], "var_pop": [ - 2086 + 2355 ], "var_samp": [ - 2088 + 2357 ], "variance": [ - 2090 + 2359 ], "__typename": [ - 63 + 64 ] }, "player_flashes_arr_rel_insert_input": { "data": [ - 2060 + 2329 ], "on_conflict": [ - 2066 + 2335 ], "__typename": [ - 63 + 64 ] }, "player_flashes_avg_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_avg_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_bool_exp": { "_and": [ - 2057 + 2326 ], "_not": [ - 2057 + 2326 ], "_or": [ - 2057 + 2326 ], "attacked_steam_id": [ - 163 + 164 ], "attacker_steam_id": [ - 163 + 164 ], "blinded": [ - 2607 + 2876 ], "deleted_at": [ - 2923 + 3192 ], "duration": [ - 1735 + 2004 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "round": [ - 35 + 36 ], "team_flash": [ 4 ], "thrown_by": [ - 2607 + 2876 ], "time": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "player_flashes_constraint": {}, "player_flashes_inc_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "duration": [ - 1734 + 2003 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_flashes_insert_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "blinded": [ - 2614 + 2883 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "team_flash": [ 3 ], "thrown_by": [ - 2614 + 2883 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_max_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_max_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_min_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_min_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2046 + 2315 ], "__typename": [ - 63 + 64 ] }, "player_flashes_on_conflict": { "constraint": [ - 2058 + 2327 ], "update_columns": [ - 2083 + 2352 ], "where": [ - 2057 + 2326 ], "__typename": [ - 63 + 64 ] }, "player_flashes_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "blinded": [ - 2616 + 2885 ], "deleted_at": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_flash": [ - 1736 + 2005 ], "thrown_by": [ - 2616 + 2885 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_pk_columns_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "match_map_id": [ - 3319 + 3588 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_select_column": {}, @@ -42616,330 +47546,330 @@ export default { "player_flashes_select_column_player_flashes_aggregate_bool_exp_bool_or_arguments_columns": {}, "player_flashes_set_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "team_flash": [ 3 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stream_cursor_input": { "initial_value": [ - 2080 + 2349 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_flashes_stream_cursor_value_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "duration": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "team_flash": [ 3 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_flashes_sum_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "duration": [ - 1734 + 2003 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_flashes_sum_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_update_column": {}, "player_flashes_updates": { "_inc": [ - 2059 + 2328 ], "_set": [ - 2072 + 2341 ], "where": [ - 2057 + 2326 ], "__typename": [ - 63 + 64 ] }, "player_flashes_var_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_var_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_flashes_variance_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "duration": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_flashes_variance_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "duration": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills": { @@ -42947,43 +47877,43 @@ export default { 3 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_player": [ - 2603 + 2872 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "blinded": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "headshot": [ 3 ], "hitgroup": [ - 63 + 64 ], "in_air": [ 3 @@ -42992,25 +47922,25 @@ export default { 3 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "no_scope": [ 3 ], "player": [ - 2603 + 2872 ], "round": [ - 34 + 35 ], "team_kill": [ 3 @@ -43022,100 +47952,100 @@ export default { 3 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate": { "aggregate": [ - 2097 + 2366 ], "nodes": [ - 2091 + 2360 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_bool_exp": { "bool_and": [ - 2094 + 2363 ], "bool_or": [ - 2095 + 2364 ], "count": [ - 2096 + 2365 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_bool_exp_bool_and": { "arguments": [ - 2156 + 2425 ], "distinct": [ 3 ], "filter": [ - 2102 + 2371 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_bool_exp_bool_or": { "arguments": [ - 2157 + 2426 ], "distinct": [ 3 ], "filter": [ - 2102 + 2371 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_bool_exp_count": { "arguments": [ - 2155 + 2424 ], "distinct": [ 3 ], "filter": [ - 2102 + 2371 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_fields": { "avg": [ - 2100 + 2369 ], "count": [ - 34, + 35, { "columns": [ - 2155, + 2424, "[player_kills_select_column!]" ], "distinct": [ @@ -43124,164 +48054,164 @@ export default { } ], "max": [ - 2147 + 2416 ], "min": [ - 2149 + 2418 ], "stddev": [ - 2159 + 2428 ], "stddev_pop": [ - 2161 + 2430 ], "stddev_samp": [ - 2163 + 2432 ], "sum": [ - 2167 + 2436 ], "var_pop": [ - 2171 + 2440 ], "var_samp": [ - 2173 + 2442 ], "variance": [ - 2175 + 2444 ], "__typename": [ - 63 + 64 ] }, "player_kills_aggregate_order_by": { "avg": [ - 2101 + 2370 ], "count": [ - 1736 + 2005 ], "max": [ - 2148 + 2417 ], "min": [ - 2150 + 2419 ], "stddev": [ - 2160 + 2429 ], "stddev_pop": [ - 2162 + 2431 ], "stddev_samp": [ - 2164 + 2433 ], "sum": [ - 2168 + 2437 ], "var_pop": [ - 2172 + 2441 ], "var_samp": [ - 2174 + 2443 ], "variance": [ - 2176 + 2445 ], "__typename": [ - 63 + 64 ] }, "player_kills_arr_rel_insert_input": { "data": [ - 2146 + 2415 ], "on_conflict": [ - 2152 + 2421 ], "__typename": [ - 63 + 64 ] }, "player_kills_avg_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_avg_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_bool_exp": { "_and": [ - 2102 + 2371 ], "_not": [ - 2102 + 2371 ], "_or": [ - 2102 + 2371 ], "assisted": [ 4 ], "attacked_location": [ - 65 + 66 ], "attacked_location_coordinates": [ - 65 + 66 ], "attacked_player": [ - 2607 + 2876 ], "attacked_steam_id": [ - 163 + 164 ], "attacked_team": [ - 65 + 66 ], "attacker_location": [ - 65 + 66 ], "attacker_location_coordinates": [ - 65 + 66 ], "attacker_steam_id": [ - 163 + 164 ], "attacker_team": [ - 65 + 66 ], "blinded": [ 4 ], "deleted_at": [ - 2923 + 3192 ], "headshot": [ 4 ], "hitgroup": [ - 65 + 66 ], "in_air": [ 4 @@ -43290,25 +48220,25 @@ export default { 4 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "no_scope": [ 4 ], "player": [ - 2607 + 2876 ], "round": [ - 35 + 36 ], "team_kill": [ 4 @@ -43320,77 +48250,77 @@ export default { 4 ], "time": [ - 2923 + 3192 ], "with": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon": { "kill_count": [ - 162 + 163 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_aggregate": { "aggregate": [ - 2107 + 2376 ], "nodes": [ - 2103 + 2372 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_aggregate_bool_exp": { "count": [ - 2106 + 2375 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_aggregate_bool_exp_count": { "arguments": [ - 2124 + 2393 ], "distinct": [ 3 ], "filter": [ - 2112 + 2381 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_aggregate_fields": { "avg": [ - 2110 + 2379 ], "count": [ - 34, + 35, { "columns": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "distinct": [ @@ -43399,493 +48329,493 @@ export default { } ], "max": [ - 2116 + 2385 ], "min": [ - 2118 + 2387 ], "stddev": [ - 2126 + 2395 ], "stddev_pop": [ - 2128 + 2397 ], "stddev_samp": [ - 2130 + 2399 ], "sum": [ - 2134 + 2403 ], "var_pop": [ - 2138 + 2407 ], "var_samp": [ - 2140 + 2409 ], "variance": [ - 2142 + 2411 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_aggregate_order_by": { "avg": [ - 2111 + 2380 ], "count": [ - 1736 + 2005 ], "max": [ - 2117 + 2386 ], "min": [ - 2119 + 2388 ], "stddev": [ - 2127 + 2396 ], "stddev_pop": [ - 2129 + 2398 ], "stddev_samp": [ - 2131 + 2400 ], "sum": [ - 2135 + 2404 ], "var_pop": [ - 2139 + 2408 ], "var_samp": [ - 2141 + 2410 ], "variance": [ - 2143 + 2412 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_arr_rel_insert_input": { "data": [ - 2115 + 2384 ], "on_conflict": [ - 2121 + 2390 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_avg_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_avg_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_bool_exp": { "_and": [ - 2112 + 2381 ], "_not": [ - 2112 + 2381 ], "_or": [ - 2112 + 2381 ], "kill_count": [ - 163 + 164 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "with": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_constraint": {}, "player_kills_by_weapon_inc_input": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_insert_input": { "kill_count": [ - 162 + 163 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_max_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_max_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_min_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_min_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2103 + 2372 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_on_conflict": { "constraint": [ - 2113 + 2382 ], "update_columns": [ - 2136 + 2405 ], "where": [ - 2112 + 2381 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_order_by": { "kill_count": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_pk_columns_input": { "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_select_column": {}, "player_kills_by_weapon_set_input": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_pop_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_pop_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_samp_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stddev_samp_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stream_cursor_input": { "initial_value": [ - 2133 + 2402 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_stream_cursor_value_input": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_sum_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_sum_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_update_column": {}, "player_kills_by_weapon_updates": { "_inc": [ - 2114 + 2383 ], "_set": [ - 2125 + 2394 ], "where": [ - 2112 + 2381 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_var_pop_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_var_pop_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_var_samp_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_var_samp_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_variance_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_by_weapon_variance_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_constraint": {}, "player_kills_inc_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_kills_insert_input": { @@ -43893,67 +48823,67 @@ export default { 3 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_player": [ - 2614 + 2883 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "blinded": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "headshot": [ 3 ], "hitgroup": [ - 63 + 64 ], "in_air": [ 3 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "no_scope": [ 3 ], "player": [ - 2614 + 2883 ], "round": [ - 34 + 35 ], "thru_smoke": [ 3 @@ -43962,344 +48892,344 @@ export default { 3 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_max_fields": { "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "hitgroup": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_max_order_by": { "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_min_fields": { "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "deleted_at": [ - 2922 + 3191 ], "hitgroup": [ - 63 + 64 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_min_order_by": { "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2091 + 2360 ], "__typename": [ - 63 + 64 ] }, "player_kills_on_conflict": { "constraint": [ - 2144 + 2413 ], "update_columns": [ - 2169 + 2438 ], "where": [ - 2102 + 2371 ], "__typename": [ - 63 + 64 ] }, "player_kills_order_by": { "assisted": [ - 1736 + 2005 ], "attacked_location": [ - 1736 + 2005 ], "attacked_location_coordinates": [ - 1736 + 2005 ], "attacked_player": [ - 2616 + 2885 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacked_team": [ - 1736 + 2005 ], "attacker_location": [ - 1736 + 2005 ], "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "attacker_team": [ - 1736 + 2005 ], "blinded": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "headshot": [ - 1736 + 2005 ], "hitgroup": [ - 1736 + 2005 ], "in_air": [ - 1736 + 2005 ], "is_suicide": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "no_scope": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "round": [ - 1736 + 2005 ], "team_kill": [ - 1736 + 2005 ], "thru_smoke": [ - 1736 + 2005 ], "thru_wall": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_pk_columns_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "match_map_id": [ - 3319 + 3588 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_kills_select_column": {}, @@ -44310,55 +49240,55 @@ export default { 3 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "blinded": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "headshot": [ 3 ], "hitgroup": [ - 63 + 64 ], "in_air": [ 3 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "no_scope": [ 3 ], "round": [ - 34 + 35 ], "thru_smoke": [ 3 @@ -44367,108 +49297,108 @@ export default { 3 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_stddev_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_stream_cursor_input": { "initial_value": [ - 2166 + 2435 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_kills_stream_cursor_value_input": { @@ -44476,55 +49406,55 @@ export default { 3 ], "attacked_location": [ - 63 + 64 ], "attacked_location_coordinates": [ - 63 + 64 ], "attacked_steam_id": [ - 162 + 163 ], "attacked_team": [ - 63 + 64 ], "attacker_location": [ - 63 + 64 ], "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "attacker_team": [ - 63 + 64 ], "blinded": [ 3 ], "deleted_at": [ - 2922 + 3191 ], "headshot": [ 3 ], "hitgroup": [ - 63 + 64 ], "in_air": [ 3 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "no_scope": [ 3 ], "round": [ - 34 + 35 ], "thru_smoke": [ 3 @@ -44533,179 +49463,179 @@ export default { 3 ], "time": [ - 2922 + 3191 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_kills_sum_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_kills_sum_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_update_column": {}, "player_kills_updates": { "_inc": [ - 2145 + 2414 ], "_set": [ - 2158 + 2427 ], "where": [ - 2102 + 2371 ], "__typename": [ - 63 + 64 ] }, "player_kills_var_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_var_pop_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_var_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_var_samp_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_kills_variance_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_kills_variance_order_by": { "attacked_steam_id": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_aggregate": { "aggregate": [ - 2179 + 2448 ], "nodes": [ - 2177 + 2446 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_aggregate_fields": { "avg": [ - 2180 + 2449 ], "count": [ - 34, + 35, { "columns": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "distinct": [ @@ -44714,608 +49644,608 @@ export default { } ], "max": [ - 2184 + 2453 ], "min": [ - 2185 + 2454 ], "stddev": [ - 2190 + 2459 ], "stddev_pop": [ - 2191 + 2460 ], "stddev_samp": [ - 2192 + 2461 ], "sum": [ - 2195 + 2464 ], "var_pop": [ - 2197 + 2466 ], "var_samp": [ - 2198 + 2467 ], "variance": [ - 2199 + 2468 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_avg_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_bool_exp": { "_and": [ - 2181 + 2450 ], "_not": [ - 2181 + 2450 ], "_or": [ - 2181 + 2450 ], "player_steam_id": [ - 65 + 66 ], "rank": [ - 35 + 36 ], "total": [ - 35 + 36 ], "value": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_inc_input": { "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_insert_input": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_max_fields": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_min_fields": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2177 + 2446 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_order_by": { "player_steam_id": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "total": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_select_column": {}, "player_leaderboard_rank_set_input": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_stddev_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_stddev_pop_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_stddev_samp_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_stream_cursor_input": { "initial_value": [ - 2194 + 2463 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_stream_cursor_value_input": { "player_steam_id": [ - 63 + 64 ], "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_sum_fields": { "rank": [ - 34 + 35 ], "total": [ - 34 + 35 ], "value": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_updates": { "_inc": [ - 2182 + 2451 ], "_set": [ - 2189 + 2458 ], "where": [ - 2181 + 2450 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_var_pop_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_var_samp_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_leaderboard_rank_variance_fields": { "rank": [ - 25 + 26 ], "total": [ - 25 + 26 ], "value": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "player": [ - 2603 + 2872 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_aggregate": { "aggregate": [ - 2204 + 2473 ], "nodes": [ - 2200 + 2469 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_aggregate_bool_exp": { "count": [ - 2203 + 2472 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_aggregate_bool_exp_count": { "arguments": [ - 2221 + 2490 ], "distinct": [ 3 ], "filter": [ - 2209 + 2478 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_aggregate_fields": { "avg": [ - 2207 + 2476 ], "count": [ - 34, + 35, { "columns": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "distinct": [ @@ -45324,6016 +50254,6016 @@ export default { } ], "max": [ - 2213 + 2482 ], "min": [ - 2215 + 2484 ], "stddev": [ - 2223 + 2492 ], "stddev_pop": [ - 2225 + 2494 ], "stddev_samp": [ - 2227 + 2496 ], "sum": [ - 2231 + 2500 ], "var_pop": [ - 2235 + 2504 ], "var_samp": [ - 2237 + 2506 ], "variance": [ - 2239 + 2508 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_aggregate_order_by": { "avg": [ - 2208 + 2477 ], "count": [ - 1736 + 2005 ], "max": [ - 2214 + 2483 ], "min": [ - 2216 + 2485 ], "stddev": [ - 2224 + 2493 ], "stddev_pop": [ - 2226 + 2495 ], "stddev_samp": [ - 2228 + 2497 ], "sum": [ - 2232 + 2501 ], "var_pop": [ - 2236 + 2505 ], "var_samp": [ - 2238 + 2507 ], "variance": [ - 2240 + 2509 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_arr_rel_insert_input": { "data": [ - 2212 + 2481 ], "on_conflict": [ - 2218 + 2487 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_avg_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_avg_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_bool_exp": { "_and": [ - 2209 + 2478 ], "_not": [ - 2209 + 2478 ], "_or": [ - 2209 + 2478 ], "assists": [ - 35 + 36 ], "assists_ct": [ - 35 + 36 ], "assists_t": [ - 35 + 36 ], "counter_strafe_eligible_shots": [ - 35 + 36 ], "counter_strafed_shots": [ - 35 + 36 ], "crosshair_angle_count": [ - 35 + 36 ], "crosshair_angle_sum_deg": [ - 1735 + 2004 ], "damage": [ - 35 + 36 ], "damage_ct": [ - 35 + 36 ], "damage_t": [ - 35 + 36 ], "deaths": [ - 35 + 36 ], "deaths_ct": [ - 35 + 36 ], "deaths_t": [ - 35 + 36 ], "decoy_throws": [ - 35 + 36 ], "enemies_flashed": [ - 35 + 36 ], "first_bullet_hits": [ - 35 + 36 ], "first_bullet_shots": [ - 35 + 36 ], "five_kill_rounds": [ - 35 + 36 ], "flash_assists": [ - 35 + 36 ], "flash_duration_count": [ - 35 + 36 ], "flash_duration_sum": [ - 1735 + 2004 ], "flashes_thrown": [ - 35 + 36 ], "four_kill_rounds": [ - 35 + 36 ], "he_damage": [ - 35 + 36 ], "he_team_damage": [ - 35 + 36 ], "he_throws": [ - 35 + 36 ], "headshot_hits": [ - 35 + 36 ], "hits": [ - 35 + 36 ], "hits_at_spotted": [ - 35 + 36 ], "hs_kills": [ - 35 + 36 ], "hs_kills_ct": [ - 35 + 36 ], "hs_kills_t": [ - 35 + 36 ], "kast_rounds": [ - 35 + 36 ], "kast_total_rounds": [ - 35 + 36 ], "kills": [ - 35 + 36 ], "kills_ct": [ - 35 + 36 ], "kills_t": [ - 35 + 36 ], "knife_kills": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "molotov_damage": [ - 35 + 36 ], "molotov_throws": [ - 35 + 36 ], "non_awp_hits": [ - 35 + 36 ], "on_target_frames": [ - 35 + 36 ], "player": [ - 2607 + 2876 ], "rounds_ct": [ - 35 + 36 ], "rounds_played": [ - 35 + 36 ], "rounds_t": [ - 35 + 36 ], "shots_at_spotted": [ - 35 + 36 ], "shots_fired": [ - 35 + 36 ], "smoke_throws": [ - 35 + 36 ], "spotted_count": [ - 35 + 36 ], "spotted_with_damage_count": [ - 35 + 36 ], "spray_hits": [ - 35 + 36 ], "spray_shots": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "team_damage": [ - 35 + 36 ], "team_flashed": [ - 35 + 36 ], "three_kill_rounds": [ - 35 + 36 ], "time_to_damage_count": [ - 35 + 36 ], "time_to_damage_sum_s": [ - 1735 + 2004 ], "total_engagement_frames": [ - 35 + 36 ], "trade_kill_attempts": [ - 35 + 36 ], "trade_kill_opportunities": [ - 35 + 36 ], "trade_kill_successes": [ - 35 + 36 ], "traded_death_attempts": [ - 35 + 36 ], "traded_death_opportunities": [ - 35 + 36 ], "traded_death_successes": [ - 35 + 36 ], "two_kill_rounds": [ - 35 + 36 ], "unused_utility_value": [ - 35 + 36 ], "updated_at": [ - 2923 + 3192 ], "util_on_death_count": [ - 35 + 36 ], "util_on_death_sum": [ - 35 + 36 ], "wasted_magazine_shots": [ - 35 + 36 ], "zeus_kills": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_constraint": {}, "player_match_map_stats_inc_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_insert_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "player": [ - 2614 + 2883 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_max_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_max_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_min_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_min_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2200 + 2469 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_on_conflict": { "constraint": [ - 2210 + 2479 ], "update_columns": [ - 2233 + 2502 ], "where": [ - 2209 + 2478 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_pk_columns_input": { "match_map_id": [ - 3319 + 3588 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_select_column": {}, "player_match_map_stats_set_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_pop_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_pop_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_samp_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stddev_samp_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stream_cursor_input": { "initial_value": [ - 2230 + 2499 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_stream_cursor_value_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_sum_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "crosshair_angle_count": [ - 34 + 35 ], "crosshair_angle_sum_deg": [ - 1734 + 2003 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flash_duration_count": [ - 34 + 35 ], "flash_duration_sum": [ - 1734 + 2003 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kast_rounds": [ - 34 + 35 ], "kast_total_rounds": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "time_to_damage_count": [ - 34 + 35 ], "time_to_damage_sum_s": [ - 1734 + 2003 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "util_on_death_count": [ - 34 + 35 ], "util_on_death_sum": [ - 34 + 35 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_sum_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_update_column": {}, "player_match_map_stats_updates": { "_inc": [ - 2211 + 2480 ], "_set": [ - 2222 + 2491 ], "where": [ - 2209 + 2478 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_var_pop_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_var_pop_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_var_samp_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_var_samp_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_variance_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "crosshair_angle_count": [ - 25 + 26 ], "crosshair_angle_sum_deg": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flash_duration_count": [ - 25 + 26 ], "flash_duration_sum": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kast_rounds": [ - 25 + 26 ], "kast_total_rounds": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "time_to_damage_count": [ - 25 + 26 ], "time_to_damage_sum_s": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "util_on_death_count": [ - 25 + 26 ], "util_on_death_sum": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_map_stats_variance_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "crosshair_angle_count": [ - 1736 + 2005 ], "crosshair_angle_sum_deg": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flash_duration_count": [ - 1736 + 2005 ], "flash_duration_sum": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kast_rounds": [ - 1736 + 2005 ], "kast_total_rounds": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "time_to_damage_count": [ - 1736 + 2005 ], "time_to_damage_sum_s": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "util_on_death_count": [ - 1736 + 2005 ], "util_on_death_sum": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "aim_rating": [ - 795 + 1037 ], "counter_strafe_pct": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "overall_rating": [ - 795 + 1037 ], "played_at": [ - 2922 + 3191 ], "positioning_rating": [ - 795 + 1037 ], "rounds": [ - 34 + 35 ], "source": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_aggregate": { "aggregate": [ - 2243 + 2512 ], "nodes": [ - 2241 + 2510 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_aggregate_fields": { "avg": [ - 2244 + 2513 ], "count": [ - 34, + 35, { "columns": [ - 2249, + 2518, "[player_match_performance_v_select_column!]" ], "distinct": [ @@ -51342,1039 +56272,1039 @@ export default { } ], "max": [ - 2246 + 2515 ], "min": [ - 2247 + 2516 ], "stddev": [ - 2250 + 2519 ], "stddev_pop": [ - 2251 + 2520 ], "stddev_samp": [ - 2252 + 2521 ], "sum": [ - 2255 + 2524 ], "var_pop": [ - 2256 + 2525 ], "var_samp": [ - 2257 + 2526 ], "variance": [ - 2258 + 2527 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_avg_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_bool_exp": { "_and": [ - 2245 + 2514 ], "_not": [ - 2245 + 2514 ], "_or": [ - 2245 + 2514 ], "accuracy": [ - 1735 + 2004 ], "accuracy_spotted": [ - 1735 + 2004 ], "aim_rating": [ - 796 + 1038 ], "counter_strafe_pct": [ - 1735 + 2004 ], "enemy_blind_pr": [ - 1735 + 2004 ], "flash_assists_pr": [ - 1735 + 2004 ], "hs_pct": [ - 1735 + 2004 ], "kast_pct": [ - 1735 + 2004 ], "match_id": [ - 3320 + 3589 ], "overall_rating": [ - 796 + 1038 ], "played_at": [ - 2923 + 3192 ], "positioning_rating": [ - 796 + 1038 ], "rounds": [ - 35 + 36 ], "source": [ - 65 + 66 ], "steam_id": [ - 163 + 164 ], "survival_pct": [ - 1735 + 2004 ], "traded_death_pct": [ - 1735 + 2004 ], "util_efficiency": [ - 1735 + 2004 ], "utility_rating": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_max_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "aim_rating": [ - 795 + 1037 ], "counter_strafe_pct": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "overall_rating": [ - 795 + 1037 ], "played_at": [ - 2922 + 3191 ], "positioning_rating": [ - 795 + 1037 ], "rounds": [ - 34 + 35 ], "source": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_min_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "aim_rating": [ - 795 + 1037 ], "counter_strafe_pct": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "overall_rating": [ - 795 + 1037 ], "played_at": [ - 2922 + 3191 ], "positioning_rating": [ - 795 + 1037 ], "rounds": [ - 34 + 35 ], "source": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_order_by": { "accuracy": [ - 1736 + 2005 ], "accuracy_spotted": [ - 1736 + 2005 ], "aim_rating": [ - 1736 + 2005 ], "counter_strafe_pct": [ - 1736 + 2005 ], "enemy_blind_pr": [ - 1736 + 2005 ], "flash_assists_pr": [ - 1736 + 2005 ], "hs_pct": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "overall_rating": [ - 1736 + 2005 ], "played_at": [ - 1736 + 2005 ], "positioning_rating": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "source": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "survival_pct": [ - 1736 + 2005 ], "traded_death_pct": [ - 1736 + 2005 ], "util_efficiency": [ - 1736 + 2005 ], "utility_rating": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_select_column": {}, "player_match_performance_v_stddev_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_stddev_pop_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_stddev_samp_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_stream_cursor_input": { "initial_value": [ - 2254 + 2523 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_stream_cursor_value_input": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "aim_rating": [ - 795 + 1037 ], "counter_strafe_pct": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "overall_rating": [ - 795 + 1037 ], "played_at": [ - 2922 + 3191 ], "positioning_rating": [ - 795 + 1037 ], "rounds": [ - 34 + 35 ], "source": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_sum_fields": { "accuracy": [ - 1734 + 2003 ], "accuracy_spotted": [ - 1734 + 2003 ], "aim_rating": [ - 795 + 1037 ], "counter_strafe_pct": [ - 1734 + 2003 ], "enemy_blind_pr": [ - 1734 + 2003 ], "flash_assists_pr": [ - 1734 + 2003 ], "hs_pct": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "overall_rating": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "survival_pct": [ - 1734 + 2003 ], "traded_death_pct": [ - 1734 + 2003 ], "util_efficiency": [ - 1734 + 2003 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_var_pop_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_var_samp_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_performance_v_variance_fields": { "accuracy": [ - 25 + 26 ], "accuracy_spotted": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "counter_strafe_pct": [ - 25 + 26 ], "enemy_blind_pr": [ - 25 + 26 ], "flash_assists_pr": [ - 25 + 26 ], "hs_pct": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "overall_rating": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_pct": [ - 25 + 26 ], "traded_death_pct": [ - 25 + 26 ], "util_efficiency": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_aggregate": { "aggregate": [ - 2263 + 2532 ], "nodes": [ - 2259 + 2528 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_aggregate_bool_exp": { "count": [ - 2262 + 2531 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2275 + 2544 ], "distinct": [ 3 ], "filter": [ - 2268 + 2537 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_aggregate_fields": { "avg": [ - 2266 + 2535 ], "count": [ - 34, + 35, { "columns": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "distinct": [ @@ -52383,5007 +57313,5007 @@ export default { } ], "max": [ - 2270 + 2539 ], "min": [ - 2272 + 2541 ], "stddev": [ - 2276 + 2545 ], "stddev_pop": [ - 2278 + 2547 ], "stddev_samp": [ - 2280 + 2549 ], "sum": [ - 2284 + 2553 ], "var_pop": [ - 2286 + 2555 ], "var_samp": [ - 2288 + 2557 ], "variance": [ - 2290 + 2559 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_aggregate_order_by": { "avg": [ - 2267 + 2536 ], "count": [ - 1736 + 2005 ], "max": [ - 2271 + 2540 ], "min": [ - 2273 + 2542 ], "stddev": [ - 2277 + 2546 ], "stddev_pop": [ - 2279 + 2548 ], "stddev_samp": [ - 2281 + 2550 ], "sum": [ - 2285 + 2554 ], "var_pop": [ - 2287 + 2556 ], "var_samp": [ - 2289 + 2558 ], "variance": [ - 2291 + 2560 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_arr_rel_insert_input": { "data": [ - 2269 + 2538 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_avg_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_avg_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_bool_exp": { "_and": [ - 2268 + 2537 ], "_not": [ - 2268 + 2537 ], "_or": [ - 2268 + 2537 ], "assists": [ - 35 + 36 ], "assists_ct": [ - 35 + 36 ], "assists_t": [ - 35 + 36 ], "avg_crosshair_angle_deg": [ - 1735 + 2004 ], "avg_flash_duration": [ - 1735 + 2004 ], "avg_time_to_damage_s": [ - 1735 + 2004 ], "counter_strafe_eligible_shots": [ - 35 + 36 ], "counter_strafed_shots": [ - 35 + 36 ], "damage": [ - 35 + 36 ], "damage_ct": [ - 35 + 36 ], "damage_t": [ - 35 + 36 ], "deaths": [ - 35 + 36 ], "deaths_ct": [ - 35 + 36 ], "deaths_t": [ - 35 + 36 ], "decoy_throws": [ - 35 + 36 ], "enemies_flashed": [ - 35 + 36 ], "first_bullet_hits": [ - 35 + 36 ], "first_bullet_shots": [ - 35 + 36 ], "five_kill_rounds": [ - 35 + 36 ], "flash_assists": [ - 35 + 36 ], "flashes_thrown": [ - 35 + 36 ], "four_kill_rounds": [ - 35 + 36 ], "he_damage": [ - 35 + 36 ], "he_team_damage": [ - 35 + 36 ], "he_throws": [ - 35 + 36 ], "headshot_hits": [ - 35 + 36 ], "hits": [ - 35 + 36 ], "hits_at_spotted": [ - 35 + 36 ], "hs_kills": [ - 35 + 36 ], "hs_kills_ct": [ - 35 + 36 ], "hs_kills_t": [ - 35 + 36 ], "kills": [ - 35 + 36 ], "kills_ct": [ - 35 + 36 ], "kills_t": [ - 35 + 36 ], "knife_kills": [ - 35 + 36 ], "match_id": [ - 3320 + 3589 ], "molotov_damage": [ - 35 + 36 ], "molotov_throws": [ - 35 + 36 ], "non_awp_hits": [ - 35 + 36 ], "on_target_frames": [ - 35 + 36 ], "rounds_ct": [ - 35 + 36 ], "rounds_played": [ - 35 + 36 ], "rounds_t": [ - 35 + 36 ], "shots_at_spotted": [ - 35 + 36 ], "shots_fired": [ - 35 + 36 ], "smoke_throws": [ - 35 + 36 ], "spotted_count": [ - 35 + 36 ], "spotted_with_damage_count": [ - 35 + 36 ], "spray_hits": [ - 35 + 36 ], "spray_shots": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "team_damage": [ - 35 + 36 ], "team_flashed": [ - 35 + 36 ], "three_kill_rounds": [ - 35 + 36 ], "total_engagement_frames": [ - 35 + 36 ], "trade_kill_attempts": [ - 35 + 36 ], "trade_kill_opportunities": [ - 35 + 36 ], "trade_kill_successes": [ - 35 + 36 ], "traded_death_attempts": [ - 35 + 36 ], "traded_death_opportunities": [ - 35 + 36 ], "traded_death_successes": [ - 35 + 36 ], "two_kill_rounds": [ - 35 + 36 ], "unused_utility_value": [ - 35 + 36 ], "utility_on_death": [ - 1735 + 2004 ], "wasted_magazine_shots": [ - 35 + 36 ], "zeus_kills": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_insert_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_max_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_max_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_min_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_min_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_select_column": {}, "player_match_stats_v_stddev_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stddev_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stddev_pop_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stddev_pop_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stddev_samp_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stddev_samp_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stream_cursor_input": { "initial_value": [ - 2283 + 2552 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_stream_cursor_value_input": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_sum_fields": { "assists": [ - 34 + 35 ], "assists_ct": [ - 34 + 35 ], "assists_t": [ - 34 + 35 ], "avg_crosshair_angle_deg": [ - 1734 + 2003 ], "avg_flash_duration": [ - 1734 + 2003 ], "avg_time_to_damage_s": [ - 1734 + 2003 ], "counter_strafe_eligible_shots": [ - 34 + 35 ], "counter_strafed_shots": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_ct": [ - 34 + 35 ], "damage_t": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "deaths_ct": [ - 34 + 35 ], "deaths_t": [ - 34 + 35 ], "decoy_throws": [ - 34 + 35 ], "enemies_flashed": [ - 34 + 35 ], "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "five_kill_rounds": [ - 34 + 35 ], "flash_assists": [ - 34 + 35 ], "flashes_thrown": [ - 34 + 35 ], "four_kill_rounds": [ - 34 + 35 ], "he_damage": [ - 34 + 35 ], "he_team_damage": [ - 34 + 35 ], "he_throws": [ - 34 + 35 ], "headshot_hits": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_at_spotted": [ - 34 + 35 ], "hs_kills": [ - 34 + 35 ], "hs_kills_ct": [ - 34 + 35 ], "hs_kills_t": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "kills_ct": [ - 34 + 35 ], "kills_t": [ - 34 + 35 ], "knife_kills": [ - 34 + 35 ], "molotov_damage": [ - 34 + 35 ], "molotov_throws": [ - 34 + 35 ], "non_awp_hits": [ - 34 + 35 ], "on_target_frames": [ - 34 + 35 ], "rounds_ct": [ - 34 + 35 ], "rounds_played": [ - 34 + 35 ], "rounds_t": [ - 34 + 35 ], "shots_at_spotted": [ - 34 + 35 ], "shots_fired": [ - 34 + 35 ], "smoke_throws": [ - 34 + 35 ], "spotted_count": [ - 34 + 35 ], "spotted_with_damage_count": [ - 34 + 35 ], "spray_hits": [ - 34 + 35 ], "spray_shots": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "team_damage": [ - 34 + 35 ], "team_flashed": [ - 34 + 35 ], "three_kill_rounds": [ - 34 + 35 ], "total_engagement_frames": [ - 34 + 35 ], "trade_kill_attempts": [ - 34 + 35 ], "trade_kill_opportunities": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_attempts": [ - 34 + 35 ], "traded_death_opportunities": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "two_kill_rounds": [ - 34 + 35 ], "unused_utility_value": [ - 34 + 35 ], "utility_on_death": [ - 1734 + 2003 ], "wasted_magazine_shots": [ - 34 + 35 ], "zeus_kills": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_sum_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_var_pop_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_var_pop_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_var_samp_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_var_samp_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_variance_fields": { "assists": [ - 25 + 26 ], "assists_ct": [ - 25 + 26 ], "assists_t": [ - 25 + 26 ], "avg_crosshair_angle_deg": [ - 25 + 26 ], "avg_flash_duration": [ - 25 + 26 ], "avg_time_to_damage_s": [ - 25 + 26 ], "counter_strafe_eligible_shots": [ - 25 + 26 ], "counter_strafed_shots": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_ct": [ - 25 + 26 ], "damage_t": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "deaths_ct": [ - 25 + 26 ], "deaths_t": [ - 25 + 26 ], "decoy_throws": [ - 25 + 26 ], "enemies_flashed": [ - 25 + 26 ], "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "five_kill_rounds": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "flashes_thrown": [ - 25 + 26 ], "four_kill_rounds": [ - 25 + 26 ], "he_damage": [ - 25 + 26 ], "he_team_damage": [ - 25 + 26 ], "he_throws": [ - 25 + 26 ], "headshot_hits": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_at_spotted": [ - 25 + 26 ], "hs_kills": [ - 25 + 26 ], "hs_kills_ct": [ - 25 + 26 ], "hs_kills_t": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kills_ct": [ - 25 + 26 ], "kills_t": [ - 25 + 26 ], "knife_kills": [ - 25 + 26 ], "molotov_damage": [ - 25 + 26 ], "molotov_throws": [ - 25 + 26 ], "non_awp_hits": [ - 25 + 26 ], "on_target_frames": [ - 25 + 26 ], "rounds_ct": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "rounds_t": [ - 25 + 26 ], "shots_at_spotted": [ - 25 + 26 ], "shots_fired": [ - 25 + 26 ], "smoke_throws": [ - 25 + 26 ], "spotted_count": [ - 25 + 26 ], "spotted_with_damage_count": [ - 25 + 26 ], "spray_hits": [ - 25 + 26 ], "spray_shots": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "team_damage": [ - 25 + 26 ], "team_flashed": [ - 25 + 26 ], "three_kill_rounds": [ - 25 + 26 ], "total_engagement_frames": [ - 25 + 26 ], "trade_kill_attempts": [ - 25 + 26 ], "trade_kill_opportunities": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_attempts": [ - 25 + 26 ], "traded_death_opportunities": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "two_kill_rounds": [ - 25 + 26 ], "unused_utility_value": [ - 25 + 26 ], "utility_on_death": [ - 25 + 26 ], "wasted_magazine_shots": [ - 25 + 26 ], "zeus_kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_match_stats_v_variance_order_by": { "assists": [ - 1736 + 2005 ], "assists_ct": [ - 1736 + 2005 ], "assists_t": [ - 1736 + 2005 ], "avg_crosshair_angle_deg": [ - 1736 + 2005 ], "avg_flash_duration": [ - 1736 + 2005 ], "avg_time_to_damage_s": [ - 1736 + 2005 ], "counter_strafe_eligible_shots": [ - 1736 + 2005 ], "counter_strafed_shots": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_ct": [ - 1736 + 2005 ], "damage_t": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "deaths_ct": [ - 1736 + 2005 ], "deaths_t": [ - 1736 + 2005 ], "decoy_throws": [ - 1736 + 2005 ], "enemies_flashed": [ - 1736 + 2005 ], "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "five_kill_rounds": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "flashes_thrown": [ - 1736 + 2005 ], "four_kill_rounds": [ - 1736 + 2005 ], "he_damage": [ - 1736 + 2005 ], "he_team_damage": [ - 1736 + 2005 ], "he_throws": [ - 1736 + 2005 ], "headshot_hits": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_at_spotted": [ - 1736 + 2005 ], "hs_kills": [ - 1736 + 2005 ], "hs_kills_ct": [ - 1736 + 2005 ], "hs_kills_t": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kills_ct": [ - 1736 + 2005 ], "kills_t": [ - 1736 + 2005 ], "knife_kills": [ - 1736 + 2005 ], "molotov_damage": [ - 1736 + 2005 ], "molotov_throws": [ - 1736 + 2005 ], "non_awp_hits": [ - 1736 + 2005 ], "on_target_frames": [ - 1736 + 2005 ], "rounds_ct": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "rounds_t": [ - 1736 + 2005 ], "shots_at_spotted": [ - 1736 + 2005 ], "shots_fired": [ - 1736 + 2005 ], "smoke_throws": [ - 1736 + 2005 ], "spotted_count": [ - 1736 + 2005 ], "spotted_with_damage_count": [ - 1736 + 2005 ], "spray_hits": [ - 1736 + 2005 ], "spray_shots": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_damage": [ - 1736 + 2005 ], "team_flashed": [ - 1736 + 2005 ], "three_kill_rounds": [ - 1736 + 2005 ], "total_engagement_frames": [ - 1736 + 2005 ], "trade_kill_attempts": [ - 1736 + 2005 ], "trade_kill_opportunities": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_attempts": [ - 1736 + 2005 ], "traded_death_opportunities": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "two_kill_rounds": [ - 1736 + 2005 ], "unused_utility_value": [ - 1736 + 2005 ], "utility_on_death": [ - 1736 + 2005 ], "wasted_magazine_shots": [ - 1736 + 2005 ], "zeus_kills": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives": { "deleted_at": [ - 2922 + 3191 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 516 + 758 ], "__typename": [ - 63 + 64 ] }, "player_objectives_aggregate": { "aggregate": [ - 2296 + 2565 ], "nodes": [ - 2292 + 2561 ], "__typename": [ - 63 + 64 ] }, "player_objectives_aggregate_bool_exp": { "count": [ - 2295 + 2564 ], "__typename": [ - 63 + 64 ] }, "player_objectives_aggregate_bool_exp_count": { "arguments": [ - 2313 + 2582 ], "distinct": [ 3 ], "filter": [ - 2301 + 2570 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_objectives_aggregate_fields": { "avg": [ - 2299 + 2568 ], "count": [ - 34, + 35, { "columns": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "distinct": [ @@ -57392,694 +62322,694 @@ export default { } ], "max": [ - 2305 + 2574 ], "min": [ - 2307 + 2576 ], "stddev": [ - 2315 + 2584 ], "stddev_pop": [ - 2317 + 2586 ], "stddev_samp": [ - 2319 + 2588 ], "sum": [ - 2323 + 2592 ], "var_pop": [ - 2327 + 2596 ], "var_samp": [ - 2329 + 2598 ], "variance": [ - 2331 + 2600 ], "__typename": [ - 63 + 64 ] }, "player_objectives_aggregate_order_by": { "avg": [ - 2300 + 2569 ], "count": [ - 1736 + 2005 ], "max": [ - 2306 + 2575 ], "min": [ - 2308 + 2577 ], "stddev": [ - 2316 + 2585 ], "stddev_pop": [ - 2318 + 2587 ], "stddev_samp": [ - 2320 + 2589 ], "sum": [ - 2324 + 2593 ], "var_pop": [ - 2328 + 2597 ], "var_samp": [ - 2330 + 2599 ], "variance": [ - 2332 + 2601 ], "__typename": [ - 63 + 64 ] }, "player_objectives_arr_rel_insert_input": { "data": [ - 2304 + 2573 ], "on_conflict": [ - 2310 + 2579 ], "__typename": [ - 63 + 64 ] }, "player_objectives_avg_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_avg_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_bool_exp": { "_and": [ - 2301 + 2570 ], "_not": [ - 2301 + 2570 ], "_or": [ - 2301 + 2570 ], "deleted_at": [ - 2923 + 3192 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "round": [ - 35 + 36 ], "time": [ - 2923 + 3192 ], "type": [ - 517 + 759 ], "__typename": [ - 63 + 64 ] }, "player_objectives_constraint": {}, "player_objectives_inc_input": { "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_objectives_insert_input": { "deleted_at": [ - 2922 + 3191 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 516 + 758 ], "__typename": [ - 63 + 64 ] }, "player_objectives_max_fields": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_objectives_max_order_by": { "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_min_fields": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_objectives_min_order_by": { "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2292 + 2561 ], "__typename": [ - 63 + 64 ] }, "player_objectives_on_conflict": { "constraint": [ - 2302 + 2571 ], "update_columns": [ - 2325 + 2594 ], "where": [ - 2301 + 2570 ], "__typename": [ - 63 + 64 ] }, "player_objectives_order_by": { "deleted_at": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_pk_columns_input": { "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_objectives_select_column": {}, "player_objectives_set_input": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 516 + 758 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_pop_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_samp_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stream_cursor_input": { "initial_value": [ - 2322 + 2591 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_objectives_stream_cursor_value_input": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 516 + 758 ], "__typename": [ - 63 + 64 ] }, "player_objectives_sum_fields": { "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_objectives_sum_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_update_column": {}, "player_objectives_updates": { "_inc": [ - 2303 + 2572 ], "_set": [ - 2314 + 2583 ], "where": [ - 2301 + 2570 ], "__typename": [ - 63 + 64 ] }, "player_objectives_var_pop_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_var_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_var_samp_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_var_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_objectives_variance_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_objectives_variance_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_performance_v": { "accuracy_score": [ - 795 + 1037 ], "aim_goal": [ - 795 + 1037 ], "aim_rating": [ - 795 + 1037 ], "band": [ - 34 + 35 ], "band_sample": [ - 162 + 163 ], "blind_score": [ - 795 + 1037 ], "counter_strafe_score": [ - 795 + 1037 ], "crosshair_score": [ - 795 + 1037 ], "flash_assists_score": [ - 795 + 1037 ], "hs_score": [ - 795 + 1037 ], "kast_score": [ - 795 + 1037 ], "maps": [ - 34 + 35 ], "positioning_goal": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "spotted_score": [ - 795 + 1037 ], "steam_id": [ - 162 + 163 ], "survival_score": [ - 795 + 1037 ], "traded_score": [ - 795 + 1037 ], "ttd_score": [ - 795 + 1037 ], "util_eff_score": [ - 795 + 1037 ], "utility_goal": [ - 795 + 1037 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_aggregate": { "aggregate": [ - 2335 + 2604 ], "nodes": [ - 2333 + 2602 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_aggregate_fields": { "avg": [ - 2336 + 2605 ], "count": [ - 34, + 35, { "columns": [ - 2341, + 2610, "[player_performance_v_select_column!]" ], "distinct": [ @@ -58088,1141 +63018,1141 @@ export default { } ], "max": [ - 2338 + 2607 ], "min": [ - 2339 + 2608 ], "stddev": [ - 2342 + 2611 ], "stddev_pop": [ - 2343 + 2612 ], "stddev_samp": [ - 2344 + 2613 ], "sum": [ - 2347 + 2616 ], "var_pop": [ - 2348 + 2617 ], "var_samp": [ - 2349 + 2618 ], "variance": [ - 2350 + 2619 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_avg_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_bool_exp": { "_and": [ - 2337 + 2606 ], "_not": [ - 2337 + 2606 ], "_or": [ - 2337 + 2606 ], "accuracy_score": [ - 796 + 1038 ], "aim_goal": [ - 796 + 1038 ], "aim_rating": [ - 796 + 1038 ], "band": [ - 35 + 36 ], "band_sample": [ - 163 + 164 ], "blind_score": [ - 796 + 1038 ], "counter_strafe_score": [ - 796 + 1038 ], "crosshair_score": [ - 796 + 1038 ], "flash_assists_score": [ - 796 + 1038 ], "hs_score": [ - 796 + 1038 ], "kast_score": [ - 796 + 1038 ], "maps": [ - 35 + 36 ], "positioning_goal": [ - 796 + 1038 ], "positioning_rating": [ - 796 + 1038 ], "premier_rank": [ - 35 + 36 ], "rounds": [ - 35 + 36 ], "spotted_score": [ - 796 + 1038 ], "steam_id": [ - 163 + 164 ], "survival_score": [ - 796 + 1038 ], "traded_score": [ - 796 + 1038 ], "ttd_score": [ - 796 + 1038 ], "util_eff_score": [ - 796 + 1038 ], "utility_goal": [ - 796 + 1038 ], "utility_rating": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_max_fields": { "accuracy_score": [ - 795 + 1037 ], "aim_goal": [ - 795 + 1037 ], "aim_rating": [ - 795 + 1037 ], "band": [ - 34 + 35 ], "band_sample": [ - 162 + 163 ], "blind_score": [ - 795 + 1037 ], "counter_strafe_score": [ - 795 + 1037 ], "crosshair_score": [ - 795 + 1037 ], "flash_assists_score": [ - 795 + 1037 ], "hs_score": [ - 795 + 1037 ], "kast_score": [ - 795 + 1037 ], "maps": [ - 34 + 35 ], "positioning_goal": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "spotted_score": [ - 795 + 1037 ], "steam_id": [ - 162 + 163 ], "survival_score": [ - 795 + 1037 ], "traded_score": [ - 795 + 1037 ], "ttd_score": [ - 795 + 1037 ], "util_eff_score": [ - 795 + 1037 ], "utility_goal": [ - 795 + 1037 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_min_fields": { "accuracy_score": [ - 795 + 1037 ], "aim_goal": [ - 795 + 1037 ], "aim_rating": [ - 795 + 1037 ], "band": [ - 34 + 35 ], "band_sample": [ - 162 + 163 ], "blind_score": [ - 795 + 1037 ], "counter_strafe_score": [ - 795 + 1037 ], "crosshair_score": [ - 795 + 1037 ], "flash_assists_score": [ - 795 + 1037 ], "hs_score": [ - 795 + 1037 ], "kast_score": [ - 795 + 1037 ], "maps": [ - 34 + 35 ], "positioning_goal": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "spotted_score": [ - 795 + 1037 ], "steam_id": [ - 162 + 163 ], "survival_score": [ - 795 + 1037 ], "traded_score": [ - 795 + 1037 ], "ttd_score": [ - 795 + 1037 ], "util_eff_score": [ - 795 + 1037 ], "utility_goal": [ - 795 + 1037 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_order_by": { "accuracy_score": [ - 1736 + 2005 ], "aim_goal": [ - 1736 + 2005 ], "aim_rating": [ - 1736 + 2005 ], "band": [ - 1736 + 2005 ], "band_sample": [ - 1736 + 2005 ], "blind_score": [ - 1736 + 2005 ], "counter_strafe_score": [ - 1736 + 2005 ], "crosshair_score": [ - 1736 + 2005 ], "flash_assists_score": [ - 1736 + 2005 ], "hs_score": [ - 1736 + 2005 ], "kast_score": [ - 1736 + 2005 ], "maps": [ - 1736 + 2005 ], "positioning_goal": [ - 1736 + 2005 ], "positioning_rating": [ - 1736 + 2005 ], "premier_rank": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "spotted_score": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "survival_score": [ - 1736 + 2005 ], "traded_score": [ - 1736 + 2005 ], "ttd_score": [ - 1736 + 2005 ], "util_eff_score": [ - 1736 + 2005 ], "utility_goal": [ - 1736 + 2005 ], "utility_rating": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_select_column": {}, "player_performance_v_stddev_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_stddev_pop_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_stddev_samp_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_stream_cursor_input": { "initial_value": [ - 2346 + 2615 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_stream_cursor_value_input": { "accuracy_score": [ - 795 + 1037 ], "aim_goal": [ - 795 + 1037 ], "aim_rating": [ - 795 + 1037 ], "band": [ - 34 + 35 ], "band_sample": [ - 162 + 163 ], "blind_score": [ - 795 + 1037 ], "counter_strafe_score": [ - 795 + 1037 ], "crosshair_score": [ - 795 + 1037 ], "flash_assists_score": [ - 795 + 1037 ], "hs_score": [ - 795 + 1037 ], "kast_score": [ - 795 + 1037 ], "maps": [ - 34 + 35 ], "positioning_goal": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "spotted_score": [ - 795 + 1037 ], "steam_id": [ - 162 + 163 ], "survival_score": [ - 795 + 1037 ], "traded_score": [ - 795 + 1037 ], "ttd_score": [ - 795 + 1037 ], "util_eff_score": [ - 795 + 1037 ], "utility_goal": [ - 795 + 1037 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_sum_fields": { "accuracy_score": [ - 795 + 1037 ], "aim_goal": [ - 795 + 1037 ], "aim_rating": [ - 795 + 1037 ], "band": [ - 34 + 35 ], "band_sample": [ - 162 + 163 ], "blind_score": [ - 795 + 1037 ], "counter_strafe_score": [ - 795 + 1037 ], "crosshair_score": [ - 795 + 1037 ], "flash_assists_score": [ - 795 + 1037 ], "hs_score": [ - 795 + 1037 ], "kast_score": [ - 795 + 1037 ], "maps": [ - 34 + 35 ], "positioning_goal": [ - 795 + 1037 ], "positioning_rating": [ - 795 + 1037 ], "premier_rank": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "spotted_score": [ - 795 + 1037 ], "steam_id": [ - 162 + 163 ], "survival_score": [ - 795 + 1037 ], "traded_score": [ - 795 + 1037 ], "ttd_score": [ - 795 + 1037 ], "util_eff_score": [ - 795 + 1037 ], "utility_goal": [ - 795 + 1037 ], "utility_rating": [ - 795 + 1037 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_var_pop_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_var_samp_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_performance_v_variance_fields": { "accuracy_score": [ - 25 + 26 ], "aim_goal": [ - 25 + 26 ], "aim_rating": [ - 25 + 26 ], "band": [ - 25 + 26 ], "band_sample": [ - 25 + 26 ], "blind_score": [ - 25 + 26 ], "counter_strafe_score": [ - 25 + 26 ], "crosshair_score": [ - 25 + 26 ], "flash_assists_score": [ - 25 + 26 ], "hs_score": [ - 25 + 26 ], "kast_score": [ - 25 + 26 ], "maps": [ - 25 + 26 ], "positioning_goal": [ - 25 + 26 ], "positioning_rating": [ - 25 + 26 ], "premier_rank": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "spotted_score": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "survival_score": [ - 25 + 26 ], "traded_score": [ - 25 + 26 ], "ttd_score": [ - 25 + 26 ], "util_eff_score": [ - 25 + 26 ], "utility_goal": [ - 25 + 26 ], "utility_rating": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history": { "id": [ - 3319 + 3588 ], "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "player": [ - 2603 + 2872 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_aggregate": { "aggregate": [ - 2355 + 2624 ], "nodes": [ - 2351 + 2620 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_aggregate_bool_exp": { "count": [ - 2354 + 2623 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_aggregate_bool_exp_count": { "arguments": [ - 2372 + 2641 ], "distinct": [ 3 ], "filter": [ - 2360 + 2629 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_aggregate_fields": { "avg": [ - 2358 + 2627 ], "count": [ - 34, + 35, { "columns": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "distinct": [ @@ -59231,815 +64161,815 @@ export default { } ], "max": [ - 2364 + 2633 ], "min": [ - 2366 + 2635 ], "stddev": [ - 2374 + 2643 ], "stddev_pop": [ - 2376 + 2645 ], "stddev_samp": [ - 2378 + 2647 ], "sum": [ - 2382 + 2651 ], "var_pop": [ - 2386 + 2655 ], "var_samp": [ - 2388 + 2657 ], "variance": [ - 2390 + 2659 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_aggregate_order_by": { "avg": [ - 2359 + 2628 ], "count": [ - 1736 + 2005 ], "max": [ - 2365 + 2634 ], "min": [ - 2367 + 2636 ], "stddev": [ - 2375 + 2644 ], "stddev_pop": [ - 2377 + 2646 ], "stddev_samp": [ - 2379 + 2648 ], "sum": [ - 2383 + 2652 ], "var_pop": [ - 2387 + 2656 ], "var_samp": [ - 2389 + 2658 ], "variance": [ - 2391 + 2660 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_arr_rel_insert_input": { "data": [ - 2363 + 2632 ], "on_conflict": [ - 2369 + 2638 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_avg_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_avg_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_bool_exp": { "_and": [ - 2360 + 2629 ], "_not": [ - 2360 + 2629 ], "_or": [ - 2360 + 2629 ], "id": [ - 3320 + 3589 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "observed_at": [ - 2923 + 3192 ], "player": [ - 2607 + 2876 ], "previous_rank": [ - 35 + 36 ], "rank": [ - 35 + 36 ], "rank_type": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_constraint": {}, "player_premier_rank_history_inc_input": { "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_insert_input": { "id": [ - 3319 + 3588 ], "map": [ - 1072 + 1314 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "player": [ - 2614 + 2883 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_max_fields": { "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_max_order_by": { "id": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_min_fields": { "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_min_order_by": { "id": [ - 1736 + 2005 ], "map_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2351 + 2620 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_on_conflict": { "constraint": [ - 2361 + 2630 ], "update_columns": [ - 2384 + 2653 ], "where": [ - 2360 + 2629 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_order_by": { "id": [ - 1736 + 2005 ], "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "observed_at": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_select_column": {}, "player_premier_rank_history_set_input": { "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_pop_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_pop_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_samp_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stddev_samp_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stream_cursor_input": { "initial_value": [ - 2381 + 2650 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_stream_cursor_value_input": { "id": [ - 3319 + 3588 ], "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "observed_at": [ - 2922 + 3191 ], "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_sum_fields": { "previous_rank": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rank_type": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_sum_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_update_column": {}, "player_premier_rank_history_updates": { "_inc": [ - 2362 + 2631 ], "_set": [ - 2373 + 2642 ], "where": [ - 2360 + 2629 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_var_pop_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_var_pop_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_var_samp_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_var_samp_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_variance_fields": { "previous_rank": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rank_type": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_premier_rank_history_variance_order_by": { "previous_rank": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rank_type": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "e_sanction_type": [ - 571 + 813 ], "id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by": [ - 2603 + 2872 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "type": [ - 576 + 818 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_aggregate": { "aggregate": [ - 2396 + 2665 ], "nodes": [ - 2392 + 2661 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_aggregate_bool_exp": { "count": [ - 2395 + 2664 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_aggregate_bool_exp_count": { "arguments": [ - 2413 + 2682 ], "distinct": [ 3 ], "filter": [ - 2401 + 2670 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_aggregate_fields": { "avg": [ - 2399 + 2668 ], "count": [ - 34, + 35, { "columns": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "distinct": [ @@ -60048,667 +64978,667 @@ export default { } ], "max": [ - 2405 + 2674 ], "min": [ - 2407 + 2676 ], "stddev": [ - 2415 + 2684 ], "stddev_pop": [ - 2417 + 2686 ], "stddev_samp": [ - 2419 + 2688 ], "sum": [ - 2423 + 2692 ], "var_pop": [ - 2427 + 2696 ], "var_samp": [ - 2429 + 2698 ], "variance": [ - 2431 + 2700 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_aggregate_order_by": { "avg": [ - 2400 + 2669 ], "count": [ - 1736 + 2005 ], "max": [ - 2406 + 2675 ], "min": [ - 2408 + 2677 ], "stddev": [ - 2416 + 2685 ], "stddev_pop": [ - 2418 + 2687 ], "stddev_samp": [ - 2420 + 2689 ], "sum": [ - 2424 + 2693 ], "var_pop": [ - 2428 + 2697 ], "var_samp": [ - 2430 + 2699 ], "variance": [ - 2432 + 2701 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_arr_rel_insert_input": { "data": [ - 2404 + 2673 ], "on_conflict": [ - 2410 + 2679 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_avg_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_avg_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_bool_exp": { "_and": [ - 2401 + 2670 ], "_not": [ - 2401 + 2670 ], "_or": [ - 2401 + 2670 ], "created_at": [ - 2923 + 3192 ], "deleted_at": [ - 2923 + 3192 ], "e_sanction_type": [ - 574 + 816 ], "id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "reason": [ - 65 + 66 ], "remove_sanction_date": [ - 2923 + 3192 ], "sanctioned_by": [ - 2607 + 2876 ], "sanctioned_by_steam_id": [ - 163 + 164 ], "type": [ - 577 + 819 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_constraint": {}, "player_sanctions_inc_input": { "player_steam_id": [ - 162 + 163 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_insert_input": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "e_sanction_type": [ - 582 + 824 ], "id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by": [ - 2614 + 2883 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "type": [ - 576 + 818 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_max_fields": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_max_order_by": { "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "reason": [ - 1736 + 2005 ], "remove_sanction_date": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_min_fields": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_min_order_by": { "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "reason": [ - 1736 + 2005 ], "remove_sanction_date": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2392 + 2661 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_on_conflict": { "constraint": [ - 2402 + 2671 ], "update_columns": [ - 2425 + 2694 ], "where": [ - 2401 + 2670 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_order_by": { "created_at": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "e_sanction_type": [ - 584 + 826 ], "id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "reason": [ - 1736 + 2005 ], "remove_sanction_date": [ - 1736 + 2005 ], "sanctioned_by": [ - 2616 + 2885 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_pk_columns_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_select_column": {}, "player_sanctions_set_input": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "type": [ - 576 + 818 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_pop_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_samp_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stream_cursor_input": { "initial_value": [ - 2422 + 2691 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "deleted_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "reason": [ - 63 + 64 ], "remove_sanction_date": [ - 2922 + 3191 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "type": [ - 576 + 818 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_sum_fields": { "player_steam_id": [ - 162 + 163 ], "sanctioned_by_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_sum_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_update_column": {}, "player_sanctions_updates": { "_inc": [ - 2403 + 2672 ], "_set": [ - 2414 + 2683 ], "where": [ - 2401 + 2670 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_var_pop_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_var_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_var_samp_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_var_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_variance_fields": { "player_steam_id": [ - 25 + 26 ], "sanctioned_by_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_sanctions_variance_order_by": { "player_steam_id": [ - 1736 + 2005 ], "sanctioned_by_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_stats": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_aggregate": { "aggregate": [ - 2435 + 2704 ], "nodes": [ - 2433 + 2702 ], "__typename": [ - 63 + 64 ] }, "player_stats_aggregate_fields": { "avg": [ - 2436 + 2705 ], "count": [ - 34, + 35, { "columns": [ - 2448, + 2717, "[player_stats_select_column!]" ], "distinct": [ @@ -60717,543 +65647,543 @@ export default { } ], "max": [ - 2441 + 2710 ], "min": [ - 2442 + 2711 ], "stddev": [ - 2450 + 2719 ], "stddev_pop": [ - 2451 + 2720 ], "stddev_samp": [ - 2452 + 2721 ], "sum": [ - 2455 + 2724 ], "var_pop": [ - 2458 + 2727 ], "var_samp": [ - 2459 + 2728 ], "variance": [ - 2460 + 2729 ], "__typename": [ - 63 + 64 ] }, "player_stats_avg_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_bool_exp": { "_and": [ - 2437 + 2706 ], "_not": [ - 2437 + 2706 ], "_or": [ - 2437 + 2706 ], "assists": [ - 163 + 164 ], "deaths": [ - 163 + 164 ], "headshot_percentage": [ - 796 + 1038 ], "headshots": [ - 163 + 164 ], "kills": [ - 163 + 164 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "player_stats_constraint": {}, "player_stats_inc_input": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_insert_input": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_max_fields": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_min_fields": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2433 + 2702 ], "__typename": [ - 63 + 64 ] }, "player_stats_obj_rel_insert_input": { "data": [ - 2440 + 2709 ], "on_conflict": [ - 2445 + 2714 ], "__typename": [ - 63 + 64 ] }, "player_stats_on_conflict": { "constraint": [ - 2438 + 2707 ], "update_columns": [ - 2456 + 2725 ], "where": [ - 2437 + 2706 ], "__typename": [ - 63 + 64 ] }, "player_stats_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_stats_pk_columns_input": { "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_select_column": {}, "player_stats_set_input": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_stddev_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_stddev_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_stddev_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_stream_cursor_input": { "initial_value": [ - 2454 + 2723 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_stats_stream_cursor_value_input": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_sum_fields": { "assists": [ - 162 + 163 ], "deaths": [ - 162 + 163 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_stats_update_column": {}, "player_stats_updates": { "_inc": [ - 2439 + 2708 ], "_set": [ - 2449 + 2718 ], "where": [ - 2437 + 2706 ], "__typename": [ - 63 + 64 ] }, "player_stats_var_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_var_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_stats_variance_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_aggregate": { "aggregate": [ - 2463 + 2732 ], "nodes": [ - 2461 + 2730 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_aggregate_fields": { "avg": [ - 2464 + 2733 ], "count": [ - 34, + 35, { "columns": [ - 2475, + 2744, "[player_steam_match_auth_select_column!]" ], "distinct": [ @@ -61262,446 +66192,446 @@ export default { } ], "max": [ - 2469 + 2738 ], "min": [ - 2470 + 2739 ], "stddev": [ - 2477 + 2746 ], "stddev_pop": [ - 2478 + 2747 ], "stddev_samp": [ - 2479 + 2748 ], "sum": [ - 2482 + 2751 ], "var_pop": [ - 2485 + 2754 ], "var_samp": [ - 2486 + 2755 ], "variance": [ - 2487 + 2756 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_bool_exp": { "_and": [ - 2465 + 2734 ], "_not": [ - 2465 + 2734 ], "_or": [ - 2465 + 2734 ], "auth_code": [ - 65 + 66 ], "created_at": [ - 2923 + 3192 ], "last_error": [ - 65 + 66 ], "last_known_share_code": [ - 65 + 66 ], "last_polled_at": [ - 2923 + 3192 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "updated_at": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_constraint": {}, "player_steam_match_auth_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_insert_input": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_max_fields": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_min_fields": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2461 + 2730 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_on_conflict": { "constraint": [ - 2466 + 2735 ], "update_columns": [ - 2483 + 2752 ], "where": [ - 2465 + 2734 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_order_by": { "auth_code": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "last_error": [ - 1736 + 2005 ], "last_known_share_code": [ - 1736 + 2005 ], "last_polled_at": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_pk_columns_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_select_column": {}, "player_steam_match_auth_set_input": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_stream_cursor_input": { "initial_value": [ - 2481 + 2750 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_stream_cursor_value_input": { "auth_code": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "last_error": [ - 63 + 64 ], "last_known_share_code": [ - 63 + 64 ], "last_polled_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_update_column": {}, "player_steam_match_auth_updates": { "_inc": [ - 2467 + 2736 ], "_set": [ - 2476 + 2745 ], "where": [ - 2465 + 2734 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_steam_match_auth_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility": { "deleted_at": [ - 2922 + 3191 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_aggregate": { "aggregate": [ - 2492 + 2761 ], "nodes": [ - 2488 + 2757 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_aggregate_bool_exp": { "count": [ - 2491 + 2760 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_aggregate_bool_exp_count": { "arguments": [ - 2509 + 2778 ], "distinct": [ 3 ], "filter": [ - 2497 + 2766 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_aggregate_fields": { "avg": [ - 2495 + 2764 ], "count": [ - 34, + 35, { "columns": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "distinct": [ @@ -61710,713 +66640,713 @@ export default { } ], "max": [ - 2501 + 2770 ], "min": [ - 2503 + 2772 ], "stddev": [ - 2511 + 2780 ], "stddev_pop": [ - 2513 + 2782 ], "stddev_samp": [ - 2515 + 2784 ], "sum": [ - 2519 + 2788 ], "var_pop": [ - 2523 + 2792 ], "var_samp": [ - 2525 + 2794 ], "variance": [ - 2527 + 2796 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_aggregate_order_by": { "avg": [ - 2496 + 2765 ], "count": [ - 1736 + 2005 ], "max": [ - 2502 + 2771 ], "min": [ - 2504 + 2773 ], "stddev": [ - 2512 + 2781 ], "stddev_pop": [ - 2514 + 2783 ], "stddev_samp": [ - 2516 + 2785 ], "sum": [ - 2520 + 2789 ], "var_pop": [ - 2524 + 2793 ], "var_samp": [ - 2526 + 2795 ], "variance": [ - 2528 + 2797 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_arr_rel_insert_input": { "data": [ - 2500 + 2769 ], "on_conflict": [ - 2506 + 2775 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_avg_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_avg_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_bool_exp": { "_and": [ - 2497 + 2766 ], "_not": [ - 2497 + 2766 ], "_or": [ - 2497 + 2766 ], "deleted_at": [ - 2923 + 3192 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "round": [ - 35 + 36 ], "unused": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_constraint": {}, "player_unused_utility_inc_input": { "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_insert_input": { "deleted_at": [ - 2922 + 3191 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_max_fields": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_max_order_by": { "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_min_fields": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_min_order_by": { "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2488 + 2757 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_on_conflict": { "constraint": [ - 2498 + 2767 ], "update_columns": [ - 2521 + 2790 ], "where": [ - 2497 + 2766 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_order_by": { "deleted_at": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_pk_columns_input": { "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_select_column": {}, "player_unused_utility_set_input": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_pop_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_samp_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stream_cursor_input": { "initial_value": [ - 2518 + 2787 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_stream_cursor_value_input": { "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_sum_fields": { "player_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "unused": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_sum_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_update_column": {}, "player_unused_utility_updates": { "_inc": [ - 2499 + 2768 ], "_set": [ - 2510 + 2779 ], "where": [ - 2497 + 2766 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_var_pop_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_var_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_var_samp_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_var_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_variance_fields": { "player_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "unused": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_unused_utility_variance_order_by": { "player_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "unused": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 740 + 982 ], "__typename": [ - 63 + 64 ] }, "player_utility_aggregate": { "aggregate": [ - 2533 + 2802 ], "nodes": [ - 2529 + 2798 ], "__typename": [ - 63 + 64 ] }, "player_utility_aggregate_bool_exp": { "count": [ - 2532 + 2801 ], "__typename": [ - 63 + 64 ] }, "player_utility_aggregate_bool_exp_count": { "arguments": [ - 2550 + 2819 ], "distinct": [ 3 ], "filter": [ - 2538 + 2807 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_utility_aggregate_fields": { "avg": [ - 2536 + 2805 ], "count": [ - 34, + 35, { "columns": [ - 2550, + 2819, "[player_utility_select_column!]" ], "distinct": [ @@ -62425,701 +67355,701 @@ export default { } ], "max": [ - 2542 + 2811 ], "min": [ - 2544 + 2813 ], "stddev": [ - 2552 + 2821 ], "stddev_pop": [ - 2554 + 2823 ], "stddev_samp": [ - 2556 + 2825 ], "sum": [ - 2560 + 2829 ], "var_pop": [ - 2564 + 2833 ], "var_samp": [ - 2566 + 2835 ], "variance": [ - 2568 + 2837 ], "__typename": [ - 63 + 64 ] }, "player_utility_aggregate_order_by": { "avg": [ - 2537 + 2806 ], "count": [ - 1736 + 2005 ], "max": [ - 2543 + 2812 ], "min": [ - 2545 + 2814 ], "stddev": [ - 2553 + 2822 ], "stddev_pop": [ - 2555 + 2824 ], "stddev_samp": [ - 2557 + 2826 ], "sum": [ - 2561 + 2830 ], "var_pop": [ - 2565 + 2834 ], "var_samp": [ - 2567 + 2836 ], "variance": [ - 2569 + 2838 ], "__typename": [ - 63 + 64 ] }, "player_utility_arr_rel_insert_input": { "data": [ - 2541 + 2810 ], "on_conflict": [ - 2547 + 2816 ], "__typename": [ - 63 + 64 ] }, "player_utility_avg_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_avg_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_bool_exp": { "_and": [ - 2538 + 2807 ], "_not": [ - 2538 + 2807 ], "_or": [ - 2538 + 2807 ], "attacker_location_coordinates": [ - 65 + 66 ], "attacker_steam_id": [ - 163 + 164 ], "deleted_at": [ - 2923 + 3192 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "round": [ - 35 + 36 ], "time": [ - 2923 + 3192 ], "type": [ - 741 + 983 ], "__typename": [ - 63 + 64 ] }, "player_utility_constraint": {}, "player_utility_inc_input": { "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_utility_insert_input": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 740 + 982 ], "__typename": [ - 63 + 64 ] }, "player_utility_max_fields": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_utility_max_order_by": { "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_min_fields": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_utility_min_order_by": { "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2529 + 2798 ], "__typename": [ - 63 + 64 ] }, "player_utility_on_conflict": { "constraint": [ - 2539 + 2808 ], "update_columns": [ - 2562 + 2831 ], "where": [ - 2538 + 2807 ], "__typename": [ - 63 + 64 ] }, "player_utility_order_by": { "attacker_location_coordinates": [ - 1736 + 2005 ], "attacker_steam_id": [ - 1736 + 2005 ], "deleted_at": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "round": [ - 1736 + 2005 ], "time": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_pk_columns_input": { "attacker_steam_id": [ - 162 + 163 ], "match_map_id": [ - 3319 + 3588 ], "time": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "player_utility_select_column": {}, "player_utility_set_input": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 740 + 982 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_pop_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_stddev_samp_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_stream_cursor_input": { "initial_value": [ - 2559 + 2828 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_utility_stream_cursor_value_input": { "attacker_location_coordinates": [ - 63 + 64 ], "attacker_steam_id": [ - 162 + 163 ], "deleted_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "time": [ - 2922 + 3191 ], "type": [ - 740 + 982 ], "__typename": [ - 63 + 64 ] }, "player_utility_sum_fields": { "attacker_steam_id": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "player_utility_sum_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_update_column": {}, "player_utility_updates": { "_inc": [ - 2540 + 2809 ], "_set": [ - 2551 + 2820 ], "where": [ - 2538 + 2807 ], "__typename": [ - 63 + 64 ] }, "player_utility_var_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_var_pop_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_var_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_var_samp_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_utility_variance_fields": { "attacker_steam_id": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_utility_variance_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_aggregate": { "aggregate": [ - 2574 + 2843 ], "nodes": [ - 2570 + 2839 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_aggregate_bool_exp": { "count": [ - 2573 + 2842 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_aggregate_bool_exp_count": { "arguments": [ - 2586 + 2855 ], "distinct": [ 3 ], "filter": [ - 2579 + 2848 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_aggregate_fields": { "avg": [ - 2577 + 2846 ], "count": [ - 34, + 35, { "columns": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "distinct": [ @@ -63128,1439 +68058,1439 @@ export default { } ], "max": [ - 2581 + 2850 ], "min": [ - 2583 + 2852 ], "stddev": [ - 2587 + 2856 ], "stddev_pop": [ - 2589 + 2858 ], "stddev_samp": [ - 2591 + 2860 ], "sum": [ - 2595 + 2864 ], "var_pop": [ - 2597 + 2866 ], "var_samp": [ - 2599 + 2868 ], "variance": [ - 2601 + 2870 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_aggregate_order_by": { "avg": [ - 2578 + 2847 ], "count": [ - 1736 + 2005 ], "max": [ - 2582 + 2851 ], "min": [ - 2584 + 2853 ], "stddev": [ - 2588 + 2857 ], "stddev_pop": [ - 2590 + 2859 ], "stddev_samp": [ - 2592 + 2861 ], "sum": [ - 2596 + 2865 ], "var_pop": [ - 2598 + 2867 ], "var_samp": [ - 2600 + 2869 ], "variance": [ - 2602 + 2871 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_arr_rel_insert_input": { "data": [ - 2580 + 2849 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_avg_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_avg_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_bool_exp": { "_and": [ - 2579 + 2848 ], "_not": [ - 2579 + 2848 ], "_or": [ - 2579 + 2848 ], "first_bullet_hits": [ - 35 + 36 ], "first_bullet_shots": [ - 35 + 36 ], "hits": [ - 35 + 36 ], "hits_spotted": [ - 35 + 36 ], "match_id": [ - 3320 + 3589 ], "shots": [ - 35 + 36 ], "shots_spotted": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "weapon_class": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_insert_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_max_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_max_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_min_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_min_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "weapon_class": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_select_column": {}, "player_weapon_stats_v_stddev_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stddev_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stddev_pop_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stddev_pop_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stddev_samp_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stddev_samp_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stream_cursor_input": { "initial_value": [ - 2594 + 2863 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_stream_cursor_value_input": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "weapon_class": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_sum_fields": { "first_bullet_hits": [ - 34 + 35 ], "first_bullet_shots": [ - 34 + 35 ], "hits": [ - 34 + 35 ], "hits_spotted": [ - 34 + 35 ], "shots": [ - 34 + 35 ], "shots_spotted": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_sum_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_var_pop_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_var_pop_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_var_samp_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_var_samp_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_variance_fields": { "first_bullet_hits": [ - 25 + 26 ], "first_bullet_shots": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "hits_spotted": [ - 25 + 26 ], "shots": [ - 25 + 26 ], "shots_spotted": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "player_weapon_stats_v_variance_order_by": { "first_bullet_hits": [ - 1736 + 2005 ], "first_bullet_shots": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "hits_spotted": [ - 1736 + 2005 ], "shots": [ - 1736 + 2005 ], "shots_spotted": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "players": { "abandoned_matches": [ - 94, + 95, { "distinct_on": [ - 115, + 116, "[abandoned_matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, + 114, "[abandoned_matches_order_by!]" ], "where": [ - 103 + 104 ] } ], "abandoned_matches_aggregate": [ - 95, + 96, { "distinct_on": [ - 115, + 116, "[abandoned_matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, + 114, "[abandoned_matches_order_by!]" ], "where": [ - 103 + 104 ] } ], "aim_weapon_stats": [ - 1833, + 2102, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "aim_weapon_stats_aggregate": [ - 1834, + 2103, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "assists": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "assists_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "assited_by_players": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "assited_by_players_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "avatar_url": [ - 63 + 64 ], "coach_lineups": [ - 1258, + 1500, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "coach_lineups_aggregate": [ - 1259, + 1501, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "current_lobby_id": [ - 3319 + 3588 ], "custom_avatar_url": [ - 63 + 64 ], "damage_dealt": [ - 1937, + 2206, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "damage_dealt_aggregate": [ - 1938, + 2207, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "damage_taken": [ - 1937, + 2206, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "damage_taken_aggregate": [ - 1938, + 2207, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "days_since_last_ban": [ - 34 + 35 ], "deaths": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "deaths_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "discord_id": [ - 63 + 64 ], "elo": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "elo_history": [ - 3560, + 3829, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "elo_history_aggregate": [ - 3561, + 3830, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_rank_history": [ - 2005, + 2274, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "faceit_rank_history_aggregate": [ - 2006, + 2275, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "flashed_by_players": [ - 2046, + 2315, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "flashed_by_players_aggregate": [ - 2047, + 2316, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "flashed_players": [ - 2046, + 2315, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "flashed_players_aggregate": [ - 2047, + 2316, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "friends": [ - 1638, + 1880, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 ] } ], "friends_aggregate": [ - 1639, + 1881, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 ] } ], "game_ban_count": [ - 34 + 35 ], "invited_players": [ - 2793, + 3062, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "invited_players_aggregate": [ - 2794, + 3063, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], @@ -64580,734 +69510,737 @@ export default { 3 ], "kills": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "kills_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "kills_by_weapons": [ - 2103, + 2372, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "kills_by_weapons_aggregate": [ - 2104, + 2373, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "lobby_players": [ - 991, + 1233, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "lobby_players_aggregate": [ - 992, + 1234, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "match_map_hltv": [ - 3665, + 3934, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "match_map_hltv_aggregate": [ - 3666, + 3935, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "match_map_stats": [ - 2200, + 2469, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "match_map_stats_aggregate": [ - 2201, + 2470, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "match_stats": [ - 2259, + 2528, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "match_stats_aggregate": [ - 2260, + 2529, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matchmaking_cooldown": [ - 2922 + 3191 ], "multi_kills": [ - 3756, + 4025, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "multi_kills_aggregate": [ - 3757, + 4026, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "name": [ - 63 + 64 ], "name_registered": [ 3 ], "notifications": [ - 1684, + 1953, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "notifications_aggregate": [ - 1685, + 1954, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "objectives": [ - 2292, + 2561, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "objectives_aggregate": [ - 2293, + 2562, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "owned_teams": [ - 2879, + 3148, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "owned_teams_aggregate": [ - 2880, + 3149, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "peak_elo": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], "pending_match_imports": [ - 1737, + 2006, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "pending_match_imports_aggregate": [ - 1738, + 2007, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "player_lineup": [ - 1213, + 1455, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "player_lineup_aggregate": [ - 1214, + 1456, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "player_unused_utilities": [ - 2488, + 2757, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utilities_aggregate": [ - 2489, + 2758, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "premier_rank": [ - 34 + 35 ], "premier_rank_history": [ - 2351, + 2620, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "premier_rank_history_aggregate": [ - 2352, + 2621, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "role": [ - 536 + 778 ], "roster_image_url": [ - 63 + 64 ], "sanctions": [ - 2392, + 2661, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], "sanctions_aggregate": [ - 2393, + 2662, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], @@ -65315,433 +70248,433 @@ export default { 3 ], "stats": [ - 2433 + 2702 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "team_invites": [ - 2793, + 3062, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_invites_aggregate": [ - 2794, + 3063, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_members": [ - 2834, + 3103, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_members_aggregate": [ - 2835, + 3104, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "teams": [ - 2879, + 3148, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "total_matches": [ - 34 + 35 ], "tournament_organizers": [ - 2970, + 3239, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3240, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_rosters": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_rosters_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_trophies": [ - 3186, + 3455, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3456, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournaments": [ - 3273, + 3542, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_aggregate": [ - 3274, + 3543, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "utility_thrown": [ - 2529, + 2798, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "utility_thrown_aggregate": [ - 2530, + 2799, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "vac_ban_count": [ - 34 + 35 ], "vac_banned": [ 3 ], "weapon_stats": [ - 2570, + 2839, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "weapon_stats_aggregate": [ - 2571, + 2840, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_aggregate": { "aggregate": [ - 2605 + 2874 ], "nodes": [ - 2603 + 2872 ], "__typename": [ - 63 + 64 ] }, "players_aggregate_fields": { "avg": [ - 2606 + 2875 ], "count": [ - 34, + 35, { "columns": [ - 2618, + 2887, "[players_select_column!]" ], "distinct": [ @@ -65750,227 +70683,227 @@ export default { } ], "max": [ - 2611 + 2880 ], "min": [ - 2612 + 2881 ], "stddev": [ - 2620 + 2889 ], "stddev_pop": [ - 2621 + 2890 ], "stddev_samp": [ - 2622 + 2891 ], "sum": [ - 2625 + 2894 ], "var_pop": [ - 2628 + 2897 ], "var_samp": [ - 2629 + 2898 ], "variance": [ - 2630 + 2899 ], "__typename": [ - 63 + 64 ] }, "players_avg_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_bool_exp": { "_and": [ - 2607 + 2876 ], "_not": [ - 2607 + 2876 ], "_or": [ - 2607 + 2876 ], "abandoned_matches": [ - 103 + 104 ], "abandoned_matches_aggregate": [ - 96 + 97 ], "aim_weapon_stats": [ - 1842 + 2111 ], "aim_weapon_stats_aggregate": [ - 1835 + 2104 ], "assists": [ - 1885 + 2154 ], "assists_aggregate": [ - 1876 + 2145 ], "assited_by_players": [ - 1885 + 2154 ], "assited_by_players_aggregate": [ - 1876 + 2145 ], "avatar_url": [ - 65 + 66 ], "coach_lineups": [ - 1267 + 1509 ], "coach_lineups_aggregate": [ - 1260 + 1502 ], "country": [ - 65 + 66 ], "created_at": [ - 2923 + 3192 ], "current_lobby_id": [ - 3320 + 3589 ], "custom_avatar_url": [ - 65 + 66 ], "damage_dealt": [ - 1946 + 2215 ], "damage_dealt_aggregate": [ - 1939 + 2208 ], "damage_taken": [ - 1946 + 2215 ], "damage_taken_aggregate": [ - 1939 + 2208 ], "days_since_last_ban": [ - 35 + 36 ], "deaths": [ - 2102 + 2371 ], "deaths_aggregate": [ - 2093 + 2362 ], "discord_id": [ - 65 + 66 ], "elo": [ - 948 + 1190 ], "elo_history": [ - 3579 + 3848 ], "elo_history_aggregate": [ - 3562 + 3831 ], "faceit_elo": [ - 35 + 36 ], "faceit_nickname": [ - 65 + 66 ], "faceit_player_id": [ - 65 + 66 ], "faceit_rank_history": [ - 2014 + 2283 ], "faceit_rank_history_aggregate": [ - 2007 + 2276 ], "faceit_skill_level": [ - 35 + 36 ], "faceit_updated_at": [ - 2923 + 3192 ], "faceit_url": [ - 65 + 66 ], "flashed_by_players": [ - 2057 + 2326 ], "flashed_by_players_aggregate": [ - 2048 + 2317 ], "flashed_players": [ - 2057 + 2326 ], "flashed_players_aggregate": [ - 2048 + 2317 ], "friends": [ - 1650 + 1892 ], "friends_aggregate": [ - 1640 + 1882 ], "game_ban_count": [ - 35 + 36 ], "invited_players": [ - 2802 + 3071 ], "invited_players_aggregate": [ - 2795 + 3064 ], "is_banned": [ 4 @@ -65988,1580 +70921,1601 @@ export default { 4 ], "kills": [ - 2102 + 2371 ], "kills_aggregate": [ - 2093 + 2362 ], "kills_by_weapons": [ - 2112 + 2381 ], "kills_by_weapons_aggregate": [ - 2105 + 2374 ], "language": [ - 65 + 66 + ], + "last_read_news_at": [ + 3192 ], "last_sign_in_at": [ - 2923 + 3192 ], "lobby_players": [ - 1002 + 1244 ], "lobby_players_aggregate": [ - 993 + 1235 ], "losses": [ - 35 + 36 ], "losses_competitive": [ - 35 + 36 ], "losses_duel": [ - 35 + 36 ], "losses_wingman": [ - 35 + 36 ], "match_map_hltv": [ - 3674 + 3943 ], "match_map_hltv_aggregate": [ - 3667 + 3936 ], "match_map_stats": [ - 2209 + 2478 ], "match_map_stats_aggregate": [ - 2202 + 2471 ], "match_stats": [ - 2268 + 2537 ], "match_stats_aggregate": [ - 2261 + 2530 ], "matches": [ - 1587 + 1829 ], "matchmaking_cooldown": [ - 2923 + 3192 ], "multi_kills": [ - 3765 + 4034 ], "multi_kills_aggregate": [ - 3758 + 4027 ], "name": [ - 65 + 66 ], "name_registered": [ 4 ], "notifications": [ - 1696 + 1965 ], "notifications_aggregate": [ - 1686 + 1955 ], "objectives": [ - 2301 + 2570 ], "objectives_aggregate": [ - 2294 + 2563 ], "owned_teams": [ - 2888 + 3157 ], "owned_teams_aggregate": [ - 2881 + 3150 ], "peak_elo": [ - 948 + 1190 ], "pending_match_imports": [ - 1746 + 2015 ], "pending_match_imports_aggregate": [ - 1739 + 2008 ], "player_lineup": [ - 1224 + 1466 ], "player_lineup_aggregate": [ - 1215 + 1457 ], "player_unused_utilities": [ - 2497 + 2766 ], "player_unused_utilities_aggregate": [ - 2490 + 2759 ], "premier_rank": [ - 35 + 36 ], "premier_rank_history": [ - 2360 + 2629 ], "premier_rank_history_aggregate": [ - 2353 + 2622 ], "premier_rank_updated_at": [ - 2923 + 3192 ], "profile_url": [ - 65 + 66 ], "role": [ - 537 + 779 ], "roster_image_url": [ - 65 + 66 ], "sanctions": [ - 2401 + 2670 ], "sanctions_aggregate": [ - 2394 + 2663 ], "show_match_ready_modal": [ 4 ], "stats": [ - 2437 + 2706 ], "steam_bans_checked_at": [ - 2923 + 3192 ], "steam_id": [ - 163 + 164 ], "team_invites": [ - 2802 + 3071 ], "team_invites_aggregate": [ - 2795 + 3064 ], "team_members": [ - 2845 + 3114 ], "team_members_aggregate": [ - 2836 + 3105 ], "teams": [ - 2888 + 3157 ], "total_matches": [ - 35 + 36 ], "tournament_organizers": [ - 2979 + 3248 ], "tournament_organizers_aggregate": [ - 2972 + 3241 ], "tournament_rosters": [ - 3112 + 3381 ], "tournament_rosters_aggregate": [ - 3105 + 3374 ], "tournament_trophies": [ - 3197 + 3466 ], "tournament_trophies_aggregate": [ - 3188 + 3457 ], "tournaments": [ - 3284 + 3553 ], "tournaments_aggregate": [ - 3275 + 3544 ], "utility_thrown": [ - 2538 + 2807 ], "utility_thrown_aggregate": [ - 2531 + 2800 ], "vac_ban_count": [ - 35 + 36 ], "vac_banned": [ 4 ], "weapon_stats": [ - 2579 + 2848 ], "weapon_stats_aggregate": [ - 2572 + 2841 ], "wins": [ - 35 + 36 ], "wins_competitive": [ - 35 + 36 ], "wins_duel": [ - 35 + 36 ], "wins_wingman": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "players_constraint": {}, "players_inc_input": { "days_since_last_ban": [ - 34 + 35 ], "faceit_elo": [ - 34 + 35 ], "faceit_skill_level": [ - 34 + 35 ], "game_ban_count": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "vac_ban_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_insert_input": { "abandoned_matches": [ - 100 + 101 ], "aim_weapon_stats": [ - 1839 + 2108 ], "assists": [ - 1882 + 2151 ], "assited_by_players": [ - 1882 + 2151 ], "avatar_url": [ - 63 + 64 ], "coach_lineups": [ - 1264 + 1506 ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "custom_avatar_url": [ - 63 + 64 ], "damage_dealt": [ - 1943 + 2212 ], "damage_taken": [ - 1943 + 2212 ], "days_since_last_ban": [ - 34 + 35 ], "deaths": [ - 2099 + 2368 ], "discord_id": [ - 63 + 64 ], "elo_history": [ - 3576 + 3845 ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_rank_history": [ - 2011 + 2280 ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "flashed_by_players": [ - 2054 + 2323 ], "flashed_players": [ - 2054 + 2323 ], "friends": [ - 1647 + 1889 ], "game_ban_count": [ - 34 + 35 ], "invited_players": [ - 2799 + 3068 ], "kills": [ - 2099 + 2368 ], "kills_by_weapons": [ - 2109 + 2378 ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "lobby_players": [ - 999 + 1241 ], "match_map_hltv": [ - 3671 + 3940 ], "match_map_stats": [ - 2206 + 2475 ], "match_stats": [ - 2265 + 2534 ], "multi_kills": [ - 3762 + 4031 ], "name": [ - 63 + 64 ], "name_registered": [ 3 ], "notifications": [ - 1693 + 1962 ], "objectives": [ - 2298 + 2567 ], "owned_teams": [ - 2885 + 3154 ], "pending_match_imports": [ - 1743 + 2012 ], "player_lineup": [ - 1221 + 1463 ], "player_unused_utilities": [ - 2494 + 2763 ], "premier_rank": [ - 34 + 35 ], "premier_rank_history": [ - 2357 + 2626 ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "role": [ - 536 + 778 ], "roster_image_url": [ - 63 + 64 ], "sanctions": [ - 2398 + 2667 ], "show_match_ready_modal": [ 3 ], "stats": [ - 2444 + 2713 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "team_invites": [ - 2799 + 3068 ], "team_members": [ - 2842 + 3111 ], "tournament_organizers": [ - 2976 + 3245 ], "tournament_rosters": [ - 3109 + 3378 ], "tournament_trophies": [ - 3194 + 3463 ], "tournaments": [ - 3281 + 3550 ], "utility_thrown": [ - 2535 + 2804 ], "vac_ban_count": [ - 34 + 35 ], "vac_banned": [ 3 ], "weapon_stats": [ - 2576 + 2845 ], "__typename": [ - 63 + 64 ] }, "players_max_fields": { "avatar_url": [ - 63 + 64 ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "current_lobby_id": [ - 3319 + 3588 ], "custom_avatar_url": [ - 63 + 64 ], "days_since_last_ban": [ - 34 + 35 ], "discord_id": [ - 63 + 64 ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "game_ban_count": [ - 34 + 35 ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "matchmaking_cooldown": [ - 2922 + 3191 ], "name": [ - 63 + 64 ], "premier_rank": [ - 34 + 35 ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "roster_image_url": [ - 63 + 64 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_min_fields": { "avatar_url": [ - 63 + 64 ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "current_lobby_id": [ - 3319 + 3588 ], "custom_avatar_url": [ - 63 + 64 ], "days_since_last_ban": [ - 34 + 35 ], "discord_id": [ - 63 + 64 ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "game_ban_count": [ - 34 + 35 ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "matchmaking_cooldown": [ - 2922 + 3191 ], "name": [ - 63 + 64 ], "premier_rank": [ - 34 + 35 ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "roster_image_url": [ - 63 + 64 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2603 + 2872 ], "__typename": [ - 63 + 64 ] }, "players_obj_rel_insert_input": { "data": [ - 2610 + 2879 ], "on_conflict": [ - 2615 + 2884 ], "__typename": [ - 63 + 64 ] }, "players_on_conflict": { "constraint": [ - 2608 + 2877 ], "update_columns": [ - 2626 + 2895 ], "where": [ - 2607 + 2876 ], "__typename": [ - 63 + 64 ] }, "players_order_by": { "abandoned_matches_aggregate": [ - 99 + 100 ], "aim_weapon_stats_aggregate": [ - 1838 + 2107 ], "assists_aggregate": [ - 1881 + 2150 ], "assited_by_players_aggregate": [ - 1881 + 2150 ], "avatar_url": [ - 1736 + 2005 ], "coach_lineups_aggregate": [ - 1263 + 1505 ], "country": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "current_lobby_id": [ - 1736 + 2005 ], "custom_avatar_url": [ - 1736 + 2005 ], "damage_dealt_aggregate": [ - 1942 + 2211 ], "damage_taken_aggregate": [ - 1942 + 2211 ], "days_since_last_ban": [ - 1736 + 2005 ], "deaths_aggregate": [ - 2098 + 2367 ], "discord_id": [ - 1736 + 2005 ], "elo": [ - 1736 + 2005 ], "elo_history_aggregate": [ - 3575 + 3844 ], "faceit_elo": [ - 1736 + 2005 ], "faceit_nickname": [ - 1736 + 2005 ], "faceit_player_id": [ - 1736 + 2005 ], "faceit_rank_history_aggregate": [ - 2010 + 2279 ], "faceit_skill_level": [ - 1736 + 2005 ], "faceit_updated_at": [ - 1736 + 2005 ], "faceit_url": [ - 1736 + 2005 ], "flashed_by_players_aggregate": [ - 2053 + 2322 ], "flashed_players_aggregate": [ - 2053 + 2322 ], "friends_aggregate": [ - 1645 + 1887 ], "game_ban_count": [ - 1736 + 2005 ], "invited_players_aggregate": [ - 2798 + 3067 ], "is_banned": [ - 1736 + 2005 ], "is_gagged": [ - 1736 + 2005 ], "is_in_another_match": [ - 1736 + 2005 ], "is_in_lobby": [ - 1736 + 2005 ], "is_muted": [ - 1736 + 2005 ], "kills_aggregate": [ - 2098 + 2367 ], "kills_by_weapons_aggregate": [ - 2108 + 2377 ], "language": [ - 1736 + 2005 + ], + "last_read_news_at": [ + 2005 ], "last_sign_in_at": [ - 1736 + 2005 ], "lobby_players_aggregate": [ - 998 + 1240 ], "losses": [ - 1736 + 2005 ], "losses_competitive": [ - 1736 + 2005 ], "losses_duel": [ - 1736 + 2005 ], "losses_wingman": [ - 1736 + 2005 ], "match_map_hltv_aggregate": [ - 3670 + 3939 ], "match_map_stats_aggregate": [ - 2205 + 2474 ], "match_stats_aggregate": [ - 2264 + 2533 ], "matches_aggregate": [ - 1583 + 1825 ], "matchmaking_cooldown": [ - 1736 + 2005 ], "multi_kills_aggregate": [ - 3761 + 4030 ], "name": [ - 1736 + 2005 ], "name_registered": [ - 1736 + 2005 ], "notifications_aggregate": [ - 1691 + 1960 ], "objectives_aggregate": [ - 2297 + 2566 ], "owned_teams_aggregate": [ - 2884 + 3153 ], "peak_elo": [ - 1736 + 2005 ], "pending_match_imports_aggregate": [ - 1742 + 2011 ], "player_lineup_aggregate": [ - 1220 + 1462 ], "player_unused_utilities_aggregate": [ - 2493 + 2762 ], "premier_rank": [ - 1736 + 2005 ], "premier_rank_history_aggregate": [ - 2356 + 2625 ], "premier_rank_updated_at": [ - 1736 + 2005 ], "profile_url": [ - 1736 + 2005 ], "role": [ - 1736 + 2005 ], "roster_image_url": [ - 1736 + 2005 ], "sanctions_aggregate": [ - 2397 + 2666 ], "show_match_ready_modal": [ - 1736 + 2005 ], "stats": [ - 2446 + 2715 ], "steam_bans_checked_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_invites_aggregate": [ - 2798 + 3067 ], "team_members_aggregate": [ - 2841 + 3110 ], "teams_aggregate": [ - 2884 + 3153 ], "total_matches": [ - 1736 + 2005 ], "tournament_organizers_aggregate": [ - 2975 + 3244 ], "tournament_rosters_aggregate": [ - 3108 + 3377 ], "tournament_trophies_aggregate": [ - 3193 + 3462 ], "tournaments_aggregate": [ - 3280 + 3549 ], "utility_thrown_aggregate": [ - 2534 + 2803 ], "vac_ban_count": [ - 1736 + 2005 ], "vac_banned": [ - 1736 + 2005 ], "weapon_stats_aggregate": [ - 2575 + 2844 ], "wins": [ - 1736 + 2005 ], "wins_competitive": [ - 1736 + 2005 ], "wins_duel": [ - 1736 + 2005 ], "wins_wingman": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "players_pk_columns_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "players_select_column": {}, "players_set_input": { "avatar_url": [ - 63 + 64 ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "custom_avatar_url": [ - 63 + 64 ], "days_since_last_ban": [ - 34 + 35 ], "discord_id": [ - 63 + 64 ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "game_ban_count": [ - 34 + 35 ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "name": [ - 63 + 64 ], "name_registered": [ 3 ], "premier_rank": [ - 34 + 35 ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "role": [ - 536 + 778 ], "roster_image_url": [ - 63 + 64 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "vac_ban_count": [ - 34 + 35 ], "vac_banned": [ 3 ], "__typename": [ - 63 + 64 ] }, "players_stddev_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_stddev_pop_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_stddev_samp_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_stream_cursor_input": { "initial_value": [ - 2624 + 2893 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "players_stream_cursor_value_input": { "avatar_url": [ - 63 + 64 ], "country": [ - 63 + 64 ], "created_at": [ - 2922 + 3191 ], "custom_avatar_url": [ - 63 + 64 ], "days_since_last_ban": [ - 34 + 35 ], "discord_id": [ - 63 + 64 ], "faceit_elo": [ - 34 + 35 ], "faceit_nickname": [ - 63 + 64 ], "faceit_player_id": [ - 63 + 64 ], "faceit_skill_level": [ - 34 + 35 ], "faceit_updated_at": [ - 2922 + 3191 ], "faceit_url": [ - 63 + 64 ], "game_ban_count": [ - 34 + 35 ], "language": [ - 63 + 64 + ], + "last_read_news_at": [ + 3191 ], "last_sign_in_at": [ - 2922 + 3191 ], "name": [ - 63 + 64 ], "name_registered": [ 3 ], "premier_rank": [ - 34 + 35 ], "premier_rank_updated_at": [ - 2922 + 3191 ], "profile_url": [ - 63 + 64 ], "role": [ - 536 + 778 ], "roster_image_url": [ - 63 + 64 ], "show_match_ready_modal": [ 3 ], "steam_bans_checked_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "vac_ban_count": [ - 34 + 35 ], "vac_banned": [ 3 ], "__typename": [ - 63 + 64 ] }, "players_sum_fields": { "days_since_last_ban": [ - 34 + 35 ], "faceit_elo": [ - 34 + 35 ], "faceit_skill_level": [ - 34 + 35 ], "game_ban_count": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_update_column": {}, "players_updates": { "_inc": [ - 2609 + 2878 ], "_set": [ - 2619 + 2888 ], "where": [ - 2607 + 2876 ], "__typename": [ - 63 + 64 ] }, "players_var_pop_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_var_samp_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "players_variance_fields": { "days_since_last_ban": [ - 25 + 26 ], "faceit_elo": [ - 25 + 26 ], "faceit_skill_level": [ - 25 + 26 ], "game_ban_count": [ - 25 + 26 ], "losses": [ - 34 + 35 ], "losses_competitive": [ - 34 + 35 ], "losses_duel": [ - 34 + 35 ], "losses_wingman": [ - 34 + 35 ], "premier_rank": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "total_matches": [ - 34 + 35 ], "vac_ban_count": [ - 25 + 26 ], "wins": [ - 34 + 35 ], "wins_competitive": [ - 34 + 35 ], "wins_duel": [ - 34 + 35 ], "wins_wingman": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "plugin_versions": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_aggregate": { "aggregate": [ - 2633 + 2902 ], "nodes": [ - 2631 + 2900 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_aggregate_fields": { "avg": [ - 2634 + 2903 ], "count": [ - 34, + 35, { "columns": [ - 2645, + 2914, "[plugin_versions_select_column!]" ], "distinct": [ @@ -67570,332 +72524,332 @@ export default { } ], "max": [ - 2639 + 2908 ], "min": [ - 2640 + 2909 ], "stddev": [ - 2647 + 2916 ], "stddev_pop": [ - 2648 + 2917 ], "stddev_samp": [ - 2649 + 2918 ], "sum": [ - 2652 + 2921 ], "var_pop": [ - 2655 + 2924 ], "var_samp": [ - 2656 + 2925 ], "variance": [ - 2657 + 2926 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_avg_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_bool_exp": { "_and": [ - 2635 + 2904 ], "_not": [ - 2635 + 2904 ], "_or": [ - 2635 + 2904 ], "min_game_build_id": [ - 35 + 36 ], "published_at": [ - 2923 + 3192 ], "version": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_constraint": {}, "plugin_versions_inc_input": { "min_game_build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_insert_input": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_max_fields": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_min_fields": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2631 + 2900 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_on_conflict": { "constraint": [ - 2636 + 2905 ], "update_columns": [ - 2653 + 2922 ], "where": [ - 2635 + 2904 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_order_by": { "min_game_build_id": [ - 1736 + 2005 ], "published_at": [ - 1736 + 2005 ], "version": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_pk_columns_input": { "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_select_column": {}, "plugin_versions_set_input": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_stddev_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_stddev_pop_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_stddev_samp_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_stream_cursor_input": { "initial_value": [ - 2651 + 2920 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_stream_cursor_value_input": { "min_game_build_id": [ - 34 + 35 ], "published_at": [ - 2922 + 3191 ], "version": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_sum_fields": { "min_game_build_id": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_update_column": {}, "plugin_versions_updates": { "_inc": [ - 2637 + 2906 ], "_set": [ - 2646 + 2915 ], "where": [ - 2635 + 2904 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_var_pop_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_var_samp_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "plugin_versions_variance_fields": { "min_game_build_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "recalculate_tournament_trophies_args": { "_tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "server_regions": { "available_server_count": [ - 34 + 35 ], "description": [ - 63 + 64 ], "game_server_nodes": [ - 824, + 1066, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], "game_server_nodes_aggregate": [ - 825, + 1067, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], @@ -67906,41 +72860,41 @@ export default { 3 ], "status": [ - 63 + 64 ], "steam_relay": [ 3 ], "total_server_count": [ - 34 + 35 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_aggregate": { "aggregate": [ - 2661 + 2930 ], "nodes": [ - 2659 + 2928 ], "__typename": [ - 63 + 64 ] }, "server_regions_aggregate_fields": { "avg": [ - 2662 + 2931 ], "count": [ - 34, + 35, { "columns": [ - 2673, + 2942, "[server_regions_select_column!]" ], "distinct": [ @@ -67949,68 +72903,68 @@ export default { } ], "max": [ - 2666 + 2935 ], "min": [ - 2667 + 2936 ], "stddev": [ - 2675 + 2944 ], "stddev_pop": [ - 2676 + 2945 ], "stddev_samp": [ - 2677 + 2946 ], "sum": [ - 2680 + 2949 ], "var_pop": [ - 2683 + 2952 ], "var_samp": [ - 2684 + 2953 ], "variance": [ - 2685 + 2954 ], "__typename": [ - 63 + 64 ] }, "server_regions_avg_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_bool_exp": { "_and": [ - 2663 + 2932 ], "_not": [ - 2663 + 2932 ], "_or": [ - 2663 + 2932 ], "available_server_count": [ - 35 + 36 ], "description": [ - 65 + 66 ], "game_server_nodes": [ - 836 + 1078 ], "game_server_nodes_aggregate": [ - 826 + 1068 ], "has_node": [ 4 @@ -68019,28 +72973,28 @@ export default { 4 ], "status": [ - 65 + 66 ], "steam_relay": [ 4 ], "total_server_count": [ - 35 + 36 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "server_regions_constraint": {}, "server_regions_insert_input": { "description": [ - 63 + 64 ], "game_server_nodes": [ - 833 + 1075 ], "is_lan": [ 3 @@ -68049,132 +73003,132 @@ export default { 3 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_max_fields": { "available_server_count": [ - 34 + 35 ], "description": [ - 63 + 64 ], "status": [ - 63 + 64 ], "total_server_count": [ - 34 + 35 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_min_fields": { "available_server_count": [ - 34 + 35 ], "description": [ - 63 + 64 ], "status": [ - 63 + 64 ], "total_server_count": [ - 34 + 35 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2659 + 2928 ], "__typename": [ - 63 + 64 ] }, "server_regions_obj_rel_insert_input": { "data": [ - 2665 + 2934 ], "on_conflict": [ - 2670 + 2939 ], "__typename": [ - 63 + 64 ] }, "server_regions_on_conflict": { "constraint": [ - 2664 + 2933 ], "update_columns": [ - 2681 + 2950 ], "where": [ - 2663 + 2932 ], "__typename": [ - 63 + 64 ] }, "server_regions_order_by": { "available_server_count": [ - 1736 + 2005 ], "description": [ - 1736 + 2005 ], "game_server_nodes_aggregate": [ - 831 + 1073 ], "has_node": [ - 1736 + 2005 ], "is_lan": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "steam_relay": [ - 1736 + 2005 ], "total_server_count": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "server_regions_pk_columns_input": { "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_select_column": {}, "server_regions_set_input": { "description": [ - 63 + 64 ], "is_lan": [ 3 @@ -68183,59 +73137,59 @@ export default { 3 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_stddev_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_stddev_pop_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_stddev_samp_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_stream_cursor_input": { "initial_value": [ - 2679 + 2948 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "server_regions_stream_cursor_value_input": { "description": [ - 63 + 64 ], "is_lan": [ 3 @@ -68244,289 +73198,289 @@ export default { 3 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "server_regions_sum_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_update_column": {}, "server_regions_updates": { "_set": [ - 2674 + 2943 ], "where": [ - 2663 + 2932 ], "__typename": [ - 63 + 64 ] }, "server_regions_var_pop_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_var_samp_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "server_regions_variance_fields": { "available_server_count": [ - 34 + 35 ], "total_server_count": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "servers": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connected": [ 3 ], "connection_link": [ - 63 + 64 ], "connection_string": [ - 63 + 64 ], "current_match": [ - 1578 + 1820 ], "enabled": [ 3 ], "game": [ - 63 + 64 ], "game_server_node": [ - 824 + 1066 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_dedicated": [ 3 ], "label": [ - 63 + 64 ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_aggregate": [ - 1579, + 1821, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "rcon_password": [ - 164 + 165 ], "rcon_status": [ 3 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "server_region": [ - 2659 + 2928 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "type": [ - 597 + 839 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate": { "aggregate": [ - 2692 + 2961 ], "nodes": [ - 2686 + 2955 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_bool_exp": { "bool_and": [ - 2689 + 2958 ], "bool_or": [ - 2690 + 2959 ], "count": [ - 2691 + 2960 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_bool_exp_bool_and": { "arguments": [ - 2711 + 2980 ], "distinct": [ 3 ], "filter": [ - 2697 + 2966 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_bool_exp_bool_or": { "arguments": [ - 2712 + 2981 ], "distinct": [ 3 ], "filter": [ - 2697 + 2966 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_bool_exp_count": { "arguments": [ - 2710 + 2979 ], "distinct": [ 3 ], "filter": [ - 2697 + 2966 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_fields": { "avg": [ - 2695 + 2964 ], "count": [ - 34, + 35, { "columns": [ - 2710, + 2979, "[servers_select_column!]" ], "distinct": [ @@ -68535,709 +73489,709 @@ export default { } ], "max": [ - 2701 + 2970 ], "min": [ - 2703 + 2972 ], "stddev": [ - 2714 + 2983 ], "stddev_pop": [ - 2716 + 2985 ], "stddev_samp": [ - 2718 + 2987 ], "sum": [ - 2722 + 2991 ], "var_pop": [ - 2726 + 2995 ], "var_samp": [ - 2728 + 2997 ], "variance": [ - 2730 + 2999 ], "__typename": [ - 63 + 64 ] }, "servers_aggregate_order_by": { "avg": [ - 2696 + 2965 ], "count": [ - 1736 + 2005 ], "max": [ - 2702 + 2971 ], "min": [ - 2704 + 2973 ], "stddev": [ - 2715 + 2984 ], "stddev_pop": [ - 2717 + 2986 ], "stddev_samp": [ - 2719 + 2988 ], "sum": [ - 2723 + 2992 ], "var_pop": [ - 2727 + 2996 ], "var_samp": [ - 2729 + 2998 ], "variance": [ - 2731 + 3000 ], "__typename": [ - 63 + 64 ] }, "servers_arr_rel_insert_input": { "data": [ - 2700 + 2969 ], "on_conflict": [ - 2707 + 2976 ], "__typename": [ - 63 + 64 ] }, "servers_avg_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_avg_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_bool_exp": { "_and": [ - 2697 + 2966 ], "_not": [ - 2697 + 2966 ], "_or": [ - 2697 + 2966 ], "api_password": [ - 3320 + 3589 ], "boot_status": [ - 65 + 66 ], "boot_status_detail": [ - 65 + 66 ], "connect_password": [ - 65 + 66 ], "connected": [ 4 ], "connection_link": [ - 65 + 66 ], "connection_string": [ - 65 + 66 ], "current_match": [ - 1587 + 1829 ], "enabled": [ 4 ], "game": [ - 65 + 66 ], "game_server_node": [ - 836 + 1078 ], "game_server_node_id": [ - 65 + 66 ], "host": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "is_dedicated": [ 4 ], "label": [ - 65 + 66 ], "matches": [ - 1587 + 1829 ], "matches_aggregate": [ - 1580 + 1822 ], "max_players": [ - 35 + 36 ], "offline_at": [ - 2923 + 3192 ], "plugin_version": [ - 65 + 66 ], "port": [ - 35 + 36 ], "rcon_password": [ - 165 + 166 ], "rcon_status": [ 4 ], "region": [ - 65 + 66 ], "reserved_by_match_id": [ - 3320 + 3589 ], "server_region": [ - 2663 + 2932 ], "steam_relay": [ - 65 + 66 ], "tv_port": [ - 35 + 36 ], "type": [ - 598 + 840 ], "updated_at": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "servers_constraint": {}, "servers_inc_input": { "max_players": [ - 34 + 35 ], "port": [ - 34 + 35 ], "tv_port": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "servers_insert_input": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connected": [ 3 ], "current_match": [ - 1596 + 1838 ], "enabled": [ 3 ], "game": [ - 63 + 64 ], "game_server_node": [ - 848 + 1090 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_dedicated": [ 3 ], "label": [ - 63 + 64 ], "matches": [ - 1584 + 1826 ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "rcon_password": [ - 164 + 165 ], "rcon_status": [ 3 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "server_region": [ - 2669 + 2938 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "type": [ - 597 + 839 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_max_fields": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connection_link": [ - 63 + 64 ], "connection_string": [ - 63 + 64 ], "game": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_max_order_by": { "api_password": [ - 1736 + 2005 ], "boot_status": [ - 1736 + 2005 ], "boot_status_detail": [ - 1736 + 2005 ], "connect_password": [ - 1736 + 2005 ], "game": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "host": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "max_players": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "plugin_version": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "reserved_by_match_id": [ - 1736 + 2005 ], "steam_relay": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_min_fields": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connection_link": [ - 63 + 64 ], "connection_string": [ - 63 + 64 ], "game": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_min_order_by": { "api_password": [ - 1736 + 2005 ], "boot_status": [ - 1736 + 2005 ], "boot_status_detail": [ - 1736 + 2005 ], "connect_password": [ - 1736 + 2005 ], "game": [ - 1736 + 2005 ], "game_server_node_id": [ - 1736 + 2005 ], "host": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "max_players": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "plugin_version": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "reserved_by_match_id": [ - 1736 + 2005 ], "steam_relay": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2686 + 2955 ], "__typename": [ - 63 + 64 ] }, "servers_obj_rel_insert_input": { "data": [ - 2700 + 2969 ], "on_conflict": [ - 2707 + 2976 ], "__typename": [ - 63 + 64 ] }, "servers_on_conflict": { "constraint": [ - 2698 + 2967 ], "update_columns": [ - 2724 + 2993 ], "where": [ - 2697 + 2966 ], "__typename": [ - 63 + 64 ] }, "servers_order_by": { "api_password": [ - 1736 + 2005 ], "boot_status": [ - 1736 + 2005 ], "boot_status_detail": [ - 1736 + 2005 ], "connect_password": [ - 1736 + 2005 ], "connected": [ - 1736 + 2005 ], "connection_link": [ - 1736 + 2005 ], "connection_string": [ - 1736 + 2005 ], "current_match": [ - 1598 + 1840 ], "enabled": [ - 1736 + 2005 ], "game": [ - 1736 + 2005 ], "game_server_node": [ - 850 + 1092 ], "game_server_node_id": [ - 1736 + 2005 ], "host": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "is_dedicated": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "matches_aggregate": [ - 1583 + 1825 ], "max_players": [ - 1736 + 2005 ], "offline_at": [ - 1736 + 2005 ], "plugin_version": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "rcon_password": [ - 1736 + 2005 ], "rcon_status": [ - 1736 + 2005 ], "region": [ - 1736 + 2005 ], "reserved_by_match_id": [ - 1736 + 2005 ], "server_region": [ - 2671 + 2940 ], "steam_relay": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "servers_select_column": {}, @@ -69245,16 +74199,16 @@ export default { "servers_select_column_servers_aggregate_bool_exp_bool_or_arguments_columns": {}, "servers_set_input": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connected": [ 3 @@ -69263,170 +74217,170 @@ export default { 3 ], "game": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_dedicated": [ 3 ], "label": [ - 63 + 64 ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "rcon_password": [ - 164 + 165 ], "rcon_status": [ 3 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "type": [ - 597 + 839 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_pop_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_pop_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_samp_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_stddev_samp_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_stream_cursor_input": { "initial_value": [ - 2721 + 2990 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "servers_stream_cursor_value_input": { "api_password": [ - 3319 + 3588 ], "boot_status": [ - 63 + 64 ], "boot_status_detail": [ - 63 + 64 ], "connect_password": [ - 63 + 64 ], "connected": [ 3 @@ -69435,218 +74389,218 @@ export default { 3 ], "game": [ - 63 + 64 ], "game_server_node_id": [ - 63 + 64 ], "host": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "is_dedicated": [ 3 ], "label": [ - 63 + 64 ], "max_players": [ - 34 + 35 ], "offline_at": [ - 2922 + 3191 ], "plugin_version": [ - 63 + 64 ], "port": [ - 34 + 35 ], "rcon_password": [ - 164 + 165 ], "rcon_status": [ 3 ], "region": [ - 63 + 64 ], "reserved_by_match_id": [ - 3319 + 3588 ], "steam_relay": [ - 63 + 64 ], "tv_port": [ - 34 + 35 ], "type": [ - 597 + 839 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "servers_sum_fields": { "max_players": [ - 34 + 35 ], "port": [ - 34 + 35 ], "tv_port": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "servers_sum_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_update_column": {}, "servers_updates": { "_inc": [ - 2699 + 2968 ], "_set": [ - 2713 + 2982 ], "where": [ - 2697 + 2966 ], "__typename": [ - 63 + 64 ] }, "servers_var_pop_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_var_pop_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_var_samp_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_var_samp_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "servers_variance_fields": { "max_players": [ - 25 + 26 ], "port": [ - 25 + 26 ], "tv_port": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "servers_variance_order_by": { "max_players": [ - 1736 + 2005 ], "port": [ - 1736 + 2005 ], "tv_port": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "settings": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_aggregate": { "aggregate": [ - 2734 + 3003 ], "nodes": [ - 2732 + 3001 ], "__typename": [ - 63 + 64 ] }, "settings_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 2744, + 3013, "[settings_select_column!]" ], "distinct": [ @@ -69655,230 +74609,230 @@ export default { } ], "max": [ - 2738 + 3007 ], "min": [ - 2739 + 3008 ], "__typename": [ - 63 + 64 ] }, "settings_bool_exp": { "_and": [ - 2735 + 3004 ], "_not": [ - 2735 + 3004 ], "_or": [ - 2735 + 3004 ], "name": [ - 65 + 66 ], "value": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "settings_constraint": {}, "settings_insert_input": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_max_fields": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_min_fields": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2732 + 3001 ], "__typename": [ - 63 + 64 ] }, "settings_on_conflict": { "constraint": [ - 2736 + 3005 ], "update_columns": [ - 2748 + 3017 ], "where": [ - 2735 + 3004 ], "__typename": [ - 63 + 64 ] }, "settings_order_by": { "name": [ - 1736 + 2005 ], "value": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "settings_pk_columns_input": { "name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_select_column": {}, "settings_set_input": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_stream_cursor_input": { "initial_value": [ - 2747 + 3016 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "settings_stream_cursor_value_input": { "name": [ - 63 + 64 ], "value": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "settings_update_column": {}, "settings_updates": { "_set": [ - 2745 + 3014 ], "where": [ - 2735 + 3004 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node": [ - 824 + 1066 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account": [ - 2774 + 3043 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_aggregate": { "aggregate": [ - 2754 + 3023 ], "nodes": [ - 2750 + 3019 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_aggregate_bool_exp": { "count": [ - 2753 + 3022 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_aggregate_bool_exp_count": { "arguments": [ - 2768 + 3037 ], "distinct": [ 3 ], "filter": [ - 2757 + 3026 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "distinct": [ @@ -69887,419 +74841,419 @@ export default { } ], "max": [ - 2760 + 3029 ], "min": [ - 2762 + 3031 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_aggregate_order_by": { "count": [ - 1736 + 2005 ], "max": [ - 2761 + 3030 ], "min": [ - 2763 + 3032 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_arr_rel_insert_input": { "data": [ - 2759 + 3028 ], "on_conflict": [ - 2765 + 3034 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_bool_exp": { "_and": [ - 2757 + 3026 ], "_not": [ - 2757 + 3026 ], "_or": [ - 2757 + 3026 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "k8s_job_name": [ - 65 + 66 ], "node": [ - 836 + 1078 ], "node_id": [ - 65 + 66 ], "purpose": [ - 65 + 66 ], "steam_account": [ - 2777 + 3046 ], "steam_account_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_constraint": {}, "steam_account_claims_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node": [ - 848 + 1090 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account": [ - 2783 + 3052 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "node_id": [ - 1736 + 2005 ], "purpose": [ - 1736 + 2005 ], "steam_account_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "node_id": [ - 1736 + 2005 ], "purpose": [ - 1736 + 2005 ], "steam_account_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2750 + 3019 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_on_conflict": { "constraint": [ - 2758 + 3027 ], "update_columns": [ - 2772 + 3041 ], "where": [ - 2757 + 3026 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "k8s_job_name": [ - 1736 + 2005 ], "node": [ - 850 + 1092 ], "node_id": [ - 1736 + 2005 ], "purpose": [ - 1736 + 2005 ], "steam_account": [ - 2785 + 3054 ], "steam_account_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_select_column": {}, "steam_account_claims_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_stream_cursor_input": { "initial_value": [ - 2771 + 3040 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "k8s_job_name": [ - 63 + 64 ], "node_id": [ - 63 + 64 ], "purpose": [ - 63 + 64 ], "steam_account_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_account_claims_update_column": {}, "steam_account_claims_updates": { "_set": [ - 2769 + 3038 ], "where": [ - 2757 + 3026 ], "__typename": [ - 63 + 64 ] }, "steam_accounts": { "claims": [ - 2750, + 3019, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "claims_aggregate": [ - 2751, + 3020, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node": [ - 824 + 1066 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_aggregate": { "aggregate": [ - 2776 + 3045 ], "nodes": [ - 2774 + 3043 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 2787, + 3056, "[steam_accounts_select_column!]" ], "distinct": [ @@ -70308,349 +75262,349 @@ export default { } ], "max": [ - 2780 + 3049 ], "min": [ - 2781 + 3050 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_bool_exp": { "_and": [ - 2777 + 3046 ], "_not": [ - 2777 + 3046 ], "_or": [ - 2777 + 3046 ], "claims": [ - 2757 + 3026 ], "claims_aggregate": [ - 2752 + 3021 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "last_node": [ - 836 + 1078 ], "last_node_id": [ - 65 + 66 ], "password": [ - 65 + 66 ], "updated_at": [ - 2923 + 3192 ], "username": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_constraint": {}, "steam_accounts_insert_input": { "claims": [ - 2756 + 3025 ], "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node": [ - 848 + 1090 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2774 + 3043 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_obj_rel_insert_input": { "data": [ - 2779 + 3048 ], "on_conflict": [ - 2784 + 3053 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_on_conflict": { "constraint": [ - 2778 + 3047 ], "update_columns": [ - 2791 + 3060 ], "where": [ - 2777 + 3046 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_order_by": { "claims_aggregate": [ - 2755 + 3024 ], "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "last_node": [ - 850 + 1092 ], "last_node_id": [ - 1736 + 2005 ], "password": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "username": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_select_column": {}, "steam_accounts_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_stream_cursor_input": { "initial_value": [ - 2790 + 3059 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "last_node_id": [ - 63 + 64 ], "password": [ - 63 + 64 ], "updated_at": [ - 2922 + 3191 ], "username": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "steam_accounts_update_column": {}, "steam_accounts_updates": { "_set": [ - 2788 + 3057 ], "where": [ - 2777 + 3046 ], "__typename": [ - 63 + 64 ] }, "team_invites": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2603 + 2872 ], "invited_by_player_steam_id": [ - 162 + 163 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "team": [ - 2879 + 3148 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_aggregate": { "aggregate": [ - 2797 + 3066 ], "nodes": [ - 2793 + 3062 ], "__typename": [ - 63 + 64 ] }, "team_invites_aggregate_bool_exp": { "count": [ - 2796 + 3065 ], "__typename": [ - 63 + 64 ] }, "team_invites_aggregate_bool_exp_count": { "arguments": [ - 2814 + 3083 ], "distinct": [ 3 ], "filter": [ - 2802 + 3071 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "team_invites_aggregate_fields": { "avg": [ - 2800 + 3069 ], "count": [ - 34, + 35, { "columns": [ - 2814, + 3083, "[team_invites_select_column!]" ], "distinct": [ @@ -70659,547 +75613,547 @@ export default { } ], "max": [ - 2806 + 3075 ], "min": [ - 2808 + 3077 ], "stddev": [ - 2816 + 3085 ], "stddev_pop": [ - 2818 + 3087 ], "stddev_samp": [ - 2820 + 3089 ], "sum": [ - 2824 + 3093 ], "var_pop": [ - 2828 + 3097 ], "var_samp": [ - 2830 + 3099 ], "variance": [ - 2832 + 3101 ], "__typename": [ - 63 + 64 ] }, "team_invites_aggregate_order_by": { "avg": [ - 2801 + 3070 ], "count": [ - 1736 + 2005 ], "max": [ - 2807 + 3076 ], "min": [ - 2809 + 3078 ], "stddev": [ - 2817 + 3086 ], "stddev_pop": [ - 2819 + 3088 ], "stddev_samp": [ - 2821 + 3090 ], "sum": [ - 2825 + 3094 ], "var_pop": [ - 2829 + 3098 ], "var_samp": [ - 2831 + 3100 ], "variance": [ - 2833 + 3102 ], "__typename": [ - 63 + 64 ] }, "team_invites_arr_rel_insert_input": { "data": [ - 2805 + 3074 ], "on_conflict": [ - 2811 + 3080 ], "__typename": [ - 63 + 64 ] }, "team_invites_avg_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_bool_exp": { "_and": [ - 2802 + 3071 ], "_not": [ - 2802 + 3071 ], "_or": [ - 2802 + 3071 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "invited_by": [ - 2607 + 2876 ], "invited_by_player_steam_id": [ - 163 + 164 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "team": [ - 2888 + 3157 ], "team_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "team_invites_constraint": {}, "team_invites_inc_input": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "team_invites_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2614 + 2883 ], "invited_by_player_steam_id": [ - 162 + 163 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "team": [ - 2897 + 3166 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2793 + 3062 ], "__typename": [ - 63 + 64 ] }, "team_invites_on_conflict": { "constraint": [ - 2803 + 3072 ], "update_columns": [ - 2826 + 3095 ], "where": [ - 2802 + 3071 ], "__typename": [ - 63 + 64 ] }, "team_invites_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by": [ - 2616 + 2885 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "team": [ - 2899 + 3168 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_select_column": {}, "team_invites_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_stream_cursor_input": { "initial_value": [ - 2823 + 3092 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "team_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_invites_sum_fields": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_update_column": {}, "team_invites_updates": { "_inc": [ - 2804 + 3073 ], "_set": [ - 2815 + 3084 ], "where": [ - 2802 + 3071 ], "__typename": [ - 63 + 64 ] }, "team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_invites_variance_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster": { @@ -71207,115 +76161,115 @@ export default { 3 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "roster_image_url": [ - 63 + 64 ], "status": [ - 658 + 900 ], "team": [ - 2879 + 3148 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate": { "aggregate": [ - 2840 + 3109 ], "nodes": [ - 2834 + 3103 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_bool_exp": { "bool_and": [ - 2837 + 3106 ], "bool_or": [ - 2838 + 3107 ], "count": [ - 2839 + 3108 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_bool_exp_bool_and": { "arguments": [ - 2858 + 3127 ], "distinct": [ 3 ], "filter": [ - 2845 + 3114 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_bool_exp_bool_or": { "arguments": [ - 2859 + 3128 ], "distinct": [ 3 ], "filter": [ - 2845 + 3114 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_bool_exp_count": { "arguments": [ - 2857 + 3126 ], "distinct": [ 3 ], "filter": [ - 2845 + 3114 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_fields": { "avg": [ - 2843 + 3112 ], "count": [ - 34, + 35, { "columns": [ - 2857, + 3126, "[team_roster_select_column!]" ], "distinct": [ @@ -71324,146 +76278,146 @@ export default { } ], "max": [ - 2849 + 3118 ], "min": [ - 2851 + 3120 ], "stddev": [ - 2861 + 3130 ], "stddev_pop": [ - 2863 + 3132 ], "stddev_samp": [ - 2865 + 3134 ], "sum": [ - 2869 + 3138 ], "var_pop": [ - 2873 + 3142 ], "var_samp": [ - 2875 + 3144 ], "variance": [ - 2877 + 3146 ], "__typename": [ - 63 + 64 ] }, "team_roster_aggregate_order_by": { "avg": [ - 2844 + 3113 ], "count": [ - 1736 + 2005 ], "max": [ - 2850 + 3119 ], "min": [ - 2852 + 3121 ], "stddev": [ - 2862 + 3131 ], "stddev_pop": [ - 2864 + 3133 ], "stddev_samp": [ - 2866 + 3135 ], "sum": [ - 2870 + 3139 ], "var_pop": [ - 2874 + 3143 ], "var_samp": [ - 2876 + 3145 ], "variance": [ - 2878 + 3147 ], "__typename": [ - 63 + 64 ] }, "team_roster_arr_rel_insert_input": { "data": [ - 2848 + 3117 ], "on_conflict": [ - 2854 + 3123 ], "__typename": [ - 63 + 64 ] }, "team_roster_avg_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_avg_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_bool_exp": { "_and": [ - 2845 + 3114 ], "_not": [ - 2845 + 3114 ], "_or": [ - 2845 + 3114 ], "coach": [ 4 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "role": [ - 638 + 880 ], "roster_image_url": [ - 65 + 66 ], "status": [ - 659 + 901 ], "team": [ - 2888 + 3157 ], "team_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "team_roster_constraint": {}, "team_roster_inc_input": { "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "team_roster_insert_input": { @@ -71471,149 +76425,149 @@ export default { 3 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "roster_image_url": [ - 63 + 64 ], "status": [ - 658 + 900 ], "team": [ - 2897 + 3166 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_max_fields": { "player_steam_id": [ - 162 + 163 ], "roster_image_url": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_max_order_by": { "player_steam_id": [ - 1736 + 2005 ], "roster_image_url": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_min_fields": { "player_steam_id": [ - 162 + 163 ], "roster_image_url": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_min_order_by": { "player_steam_id": [ - 1736 + 2005 ], "roster_image_url": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2834 + 3103 ], "__typename": [ - 63 + 64 ] }, "team_roster_on_conflict": { "constraint": [ - 2846 + 3115 ], "update_columns": [ - 2871 + 3140 ], "where": [ - 2845 + 3114 ], "__typename": [ - 63 + 64 ] }, "team_roster_order_by": { "coach": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "role": [ - 1736 + 2005 ], "roster_image_url": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "team": [ - 2899 + 3168 ], "team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_pk_columns_input": { "player_steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_select_column": {}, @@ -71624,81 +76578,81 @@ export default { 3 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "roster_image_url": [ - 63 + 64 ], "status": [ - 658 + 900 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_pop_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_samp_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_stream_cursor_input": { "initial_value": [ - 2868 + 3137 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "team_roster_stream_cursor_value_input": { @@ -71706,106 +76660,106 @@ export default { 3 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "roster_image_url": [ - 63 + 64 ], "status": [ - 658 + 900 ], "team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "team_roster_sum_fields": { "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "team_roster_sum_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_update_column": {}, "team_roster_updates": { "_inc": [ - 2847 + 3116 ], "_set": [ - 2860 + 3129 ], "where": [ - 2845 + 3114 ], "__typename": [ - 63 + 64 ] }, "team_roster_var_pop_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_var_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_var_samp_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_var_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "team_roster_variance_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "team_roster_variance_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams": { "avatar_url": [ - 63 + 64 ], "can_change_role": [ 3 @@ -71817,276 +76771,276 @@ export default { 3 ], "captain": [ - 2603 + 2872 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "invites": [ - 2793, + 3062, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "invites_aggregate": [ - 2794, + 3063, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "match_lineups": [ - 1258, + 1500, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "match_lineups_aggregate": [ - 1259, + 1501, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "name": [ - 63 + 64 ], "owner": [ - 2603 + 2872 ], "owner_steam_id": [ - 162 + 163 ], "role": [ - 63 + 64 ], "roster": [ - 2834, + 3103, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "roster_aggregate": [ - 2835, + 3104, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "short_name": [ - 63 + 64 ], "tournament_teams": [ - 3144, + 3413, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "tournament_teams_aggregate": [ - 3145, + 3414, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "__typename": [ - 63 + 64 ] }, "teams_aggregate": { "aggregate": [ - 2883 + 3152 ], "nodes": [ - 2879 + 3148 ], "__typename": [ - 63 + 64 ] }, "teams_aggregate_bool_exp": { "count": [ - 2882 + 3151 ], "__typename": [ - 63 + 64 ] }, "teams_aggregate_bool_exp_count": { "arguments": [ - 2901 + 3170 ], "distinct": [ 3 ], "filter": [ - 2888 + 3157 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "teams_aggregate_fields": { "avg": [ - 2886 + 3155 ], "count": [ - 34, + 35, { "columns": [ - 2901, + 3170, "[teams_select_column!]" ], "distinct": [ @@ -72095,119 +77049,119 @@ export default { } ], "max": [ - 2892 + 3161 ], "min": [ - 2894 + 3163 ], "stddev": [ - 2903 + 3172 ], "stddev_pop": [ - 2905 + 3174 ], "stddev_samp": [ - 2907 + 3176 ], "sum": [ - 2911 + 3180 ], "var_pop": [ - 2915 + 3184 ], "var_samp": [ - 2917 + 3186 ], "variance": [ - 2919 + 3188 ], "__typename": [ - 63 + 64 ] }, "teams_aggregate_order_by": { "avg": [ - 2887 + 3156 ], "count": [ - 1736 + 2005 ], "max": [ - 2893 + 3162 ], "min": [ - 2895 + 3164 ], "stddev": [ - 2904 + 3173 ], "stddev_pop": [ - 2906 + 3175 ], "stddev_samp": [ - 2908 + 3177 ], "sum": [ - 2912 + 3181 ], "var_pop": [ - 2916 + 3185 ], "var_samp": [ - 2918 + 3187 ], "variance": [ - 2920 + 3189 ], "__typename": [ - 63 + 64 ] }, "teams_arr_rel_insert_input": { "data": [ - 2891 + 3160 ], "on_conflict": [ - 2898 + 3167 ], "__typename": [ - 63 + 64 ] }, "teams_avg_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_avg_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_bool_exp": { "_and": [ - 2888 + 3157 ], "_not": [ - 2888 + 3157 ], "_or": [ - 2888 + 3157 ], "avatar_url": [ - 65 + 66 ], "can_change_role": [ 4 @@ -72219,570 +77173,570 @@ export default { 4 ], "captain": [ - 2607 + 2876 ], "captain_steam_id": [ - 163 + 164 ], "id": [ - 3320 + 3589 ], "invites": [ - 2802 + 3071 ], "invites_aggregate": [ - 2795 + 3064 ], "match_lineups": [ - 1267 + 1509 ], "match_lineups_aggregate": [ - 1260 + 1502 ], "matches": [ - 1587 + 1829 ], "name": [ - 65 + 66 ], "owner": [ - 2607 + 2876 ], "owner_steam_id": [ - 163 + 164 ], "role": [ - 65 + 66 ], "roster": [ - 2845 + 3114 ], "roster_aggregate": [ - 2836 + 3105 ], "short_name": [ - 65 + 66 ], "tournament_teams": [ - 3153 + 3422 ], "tournament_teams_aggregate": [ - 3146 + 3415 ], "__typename": [ - 63 + 64 ] }, "teams_constraint": {}, "teams_inc_input": { "captain_steam_id": [ - 162 + 163 ], "owner_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "teams_insert_input": { "avatar_url": [ - 63 + 64 ], "captain": [ - 2614 + 2883 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "invites": [ - 2799 + 3068 ], "match_lineups": [ - 1264 + 1506 ], "name": [ - 63 + 64 ], "owner": [ - 2614 + 2883 ], "owner_steam_id": [ - 162 + 163 ], "roster": [ - 2842 + 3111 ], "short_name": [ - 63 + 64 ], "tournament_teams": [ - 3150 + 3419 ], "__typename": [ - 63 + 64 ] }, "teams_max_fields": { "avatar_url": [ - 63 + 64 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "role": [ - 63 + 64 ], "short_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "teams_max_order_by": { "avatar_url": [ - 1736 + 2005 ], "captain_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "short_name": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_min_fields": { "avatar_url": [ - 63 + 64 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "role": [ - 63 + 64 ], "short_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "teams_min_order_by": { "avatar_url": [ - 1736 + 2005 ], "captain_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "short_name": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2879 + 3148 ], "__typename": [ - 63 + 64 ] }, "teams_obj_rel_insert_input": { "data": [ - 2891 + 3160 ], "on_conflict": [ - 2898 + 3167 ], "__typename": [ - 63 + 64 ] }, "teams_on_conflict": { "constraint": [ - 2889 + 3158 ], "update_columns": [ - 2913 + 3182 ], "where": [ - 2888 + 3157 ], "__typename": [ - 63 + 64 ] }, "teams_order_by": { "avatar_url": [ - 1736 + 2005 ], "can_change_role": [ - 1736 + 2005 ], "can_invite": [ - 1736 + 2005 ], "can_remove": [ - 1736 + 2005 ], "captain": [ - 2616 + 2885 ], "captain_steam_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invites_aggregate": [ - 2798 + 3067 ], "match_lineups_aggregate": [ - 1263 + 1505 ], "matches_aggregate": [ - 1583 + 1825 ], "name": [ - 1736 + 2005 ], "owner": [ - 2616 + 2885 ], "owner_steam_id": [ - 1736 + 2005 ], "role": [ - 1736 + 2005 ], "roster_aggregate": [ - 2841 + 3110 ], "short_name": [ - 1736 + 2005 ], "tournament_teams_aggregate": [ - 3149 + 3418 ], "__typename": [ - 63 + 64 ] }, "teams_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "teams_select_column": {}, "teams_set_input": { "avatar_url": [ - 63 + 64 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "short_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_pop_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_pop_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_samp_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_stddev_samp_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_stream_cursor_input": { "initial_value": [ - 2910 + 3179 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "teams_stream_cursor_value_input": { "avatar_url": [ - 63 + 64 ], "captain_steam_id": [ - 162 + 163 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "short_name": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "teams_sum_fields": { "captain_steam_id": [ - 162 + 163 ], "owner_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "teams_sum_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_update_column": {}, "teams_updates": { "_inc": [ - 2890 + 3159 ], "_set": [ - 2902 + 3171 ], "where": [ - 2888 + 3157 ], "__typename": [ - 63 + 64 ] }, "teams_var_pop_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_var_pop_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_var_samp_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_var_samp_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "teams_variance_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "teams_variance_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "timestamp": {}, "timestamptz": {}, "timestamptz_comparison_exp": { "_eq": [ - 2922 + 3191 ], "_gt": [ - 2922 + 3191 ], "_gte": [ - 2922 + 3191 ], "_in": [ - 2922 + 3191 ], "_is_null": [ 3 ], "_lt": [ - 2922 + 3191 ], "_lte": [ - 2922 + 3191 ], "_neq": [ - 2922 + 3191 ], "_nin": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets": { @@ -72790,27 +77744,27 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "feeding_brackets": [ - 2924, + 3193, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], @@ -72818,163 +77772,163 @@ export default { 3 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_bracket": [ - 2924 + 3193 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "options": [ - 1458 + 1700 ], "parent_bracket": [ - 2924 + 3193 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "stage": [ - 3011 + 3280 ], "team_1": [ - 3144 + 3413 ], "team_1_seed": [ - 34 + 35 ], "team_2": [ - 3144 + 3413 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate": { "aggregate": [ - 2930 + 3199 ], "nodes": [ - 2924 + 3193 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_bool_exp": { "bool_and": [ - 2927 + 3196 ], "bool_or": [ - 2928 + 3197 ], "count": [ - 2929 + 3198 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_bool_exp_bool_and": { "arguments": [ - 2949 + 3218 ], "distinct": [ 3 ], "filter": [ - 2935 + 3204 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_bool_exp_bool_or": { "arguments": [ - 2950 + 3219 ], "distinct": [ 3 ], "filter": [ - 2935 + 3204 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_bool_exp_count": { "arguments": [ - 2948 + 3217 ], "distinct": [ 3 ], "filter": [ - 2935 + 3204 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_fields": { "avg": [ - 2933 + 3202 ], "count": [ - 34, + 35, { "columns": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "distinct": [ @@ -72983,239 +77937,239 @@ export default { } ], "max": [ - 2939 + 3208 ], "min": [ - 2941 + 3210 ], "stddev": [ - 2952 + 3221 ], "stddev_pop": [ - 2954 + 3223 ], "stddev_samp": [ - 2956 + 3225 ], "sum": [ - 2960 + 3229 ], "var_pop": [ - 2964 + 3233 ], "var_samp": [ - 2966 + 3235 ], "variance": [ - 2968 + 3237 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_aggregate_order_by": { "avg": [ - 2934 + 3203 ], "count": [ - 1736 + 2005 ], "max": [ - 2940 + 3209 ], "min": [ - 2942 + 3211 ], "stddev": [ - 2953 + 3222 ], "stddev_pop": [ - 2955 + 3224 ], "stddev_samp": [ - 2957 + 3226 ], "sum": [ - 2961 + 3230 ], "var_pop": [ - 2965 + 3234 ], "var_samp": [ - 2967 + 3236 ], "variance": [ - 2969 + 3238 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_arr_rel_insert_input": { "data": [ - 2938 + 3207 ], "on_conflict": [ - 2945 + 3214 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_avg_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_avg_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_bool_exp": { "_and": [ - 2935 + 3204 ], "_not": [ - 2935 + 3204 ], "_or": [ - 2935 + 3204 ], "bye": [ 4 ], "created_at": [ - 2923 + 3192 ], "feeding_brackets": [ - 2935 + 3204 ], "finished": [ 4 ], "group": [ - 1735 + 2004 ], "id": [ - 3320 + 3589 ], "loser_bracket": [ - 2935 + 3204 ], "loser_parent_bracket_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_number": [ - 35 + 36 ], "match_options_id": [ - 3320 + 3589 ], "options": [ - 1462 + 1704 ], "parent_bracket": [ - 2935 + 3204 ], "parent_bracket_id": [ - 3320 + 3589 ], "path": [ - 65 + 66 ], "round": [ - 35 + 36 ], "scheduled_at": [ - 2923 + 3192 ], "scheduled_eta": [ - 2923 + 3192 ], "stage": [ - 3023 + 3292 ], "team_1": [ - 3153 + 3422 ], "team_1_seed": [ - 35 + 36 ], "team_2": [ - 3153 + 3422 ], "team_2_seed": [ - 35 + 36 ], "tournament_stage_id": [ - 3320 + 3589 ], "tournament_team_id_1": [ - 3320 + 3589 ], "tournament_team_id_2": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_constraint": {}, "tournament_brackets_inc_input": { "group": [ - 1734 + 2003 ], "match_number": [ - 34 + 35 ], "round": [ - 34 + 35 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_insert_input": { @@ -73223,436 +78177,436 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "finished": [ 3 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_bracket": [ - 2944 + 3213 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "options": [ - 1469 + 1711 ], "parent_bracket": [ - 2944 + 3213 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "stage": [ - 3035 + 3304 ], "team_1": [ - 3162 + 3431 ], "team_1_seed": [ - 34 + 35 ], "team_2": [ - 3162 + 3431 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_max_fields": { "created_at": [ - 2922 + 3191 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_max_order_by": { "created_at": [ - 1736 + 2005 ], "group": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "loser_parent_bracket_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "parent_bracket_id": [ - 1736 + 2005 ], "path": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "scheduled_at": [ - 1736 + 2005 ], "scheduled_eta": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id_1": [ - 1736 + 2005 ], "tournament_team_id_2": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_min_fields": { "created_at": [ - 2922 + 3191 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_min_order_by": { "created_at": [ - 1736 + 2005 ], "group": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "loser_parent_bracket_id": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "parent_bracket_id": [ - 1736 + 2005 ], "path": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "scheduled_at": [ - 1736 + 2005 ], "scheduled_eta": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id_1": [ - 1736 + 2005 ], "tournament_team_id_2": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2924 + 3193 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_obj_rel_insert_input": { "data": [ - 2938 + 3207 ], "on_conflict": [ - 2945 + 3214 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_on_conflict": { "constraint": [ - 2936 + 3205 ], "update_columns": [ - 2962 + 3231 ], "where": [ - 2935 + 3204 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_order_by": { "bye": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "feeding_brackets_aggregate": [ - 2931 + 3200 ], "finished": [ - 1736 + 2005 ], "group": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "loser_bracket": [ - 2946 + 3215 ], "loser_parent_bracket_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "options": [ - 1471 + 1713 ], "parent_bracket": [ - 2946 + 3215 ], "parent_bracket_id": [ - 1736 + 2005 ], "path": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "scheduled_at": [ - 1736 + 2005 ], "scheduled_eta": [ - 1736 + 2005 ], "stage": [ - 3037 + 3306 ], "team_1": [ - 3164 + 3433 ], "team_1_seed": [ - 1736 + 2005 ], "team_2": [ - 3164 + 3433 ], "team_2_seed": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id_1": [ - 1736 + 2005 ], "tournament_team_id_2": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_select_column": {}, @@ -73663,192 +78617,192 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "finished": [ 3 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_pop_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_pop_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_samp_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stddev_samp_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stream_cursor_input": { "initial_value": [ - 2959 + 3228 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_stream_cursor_value_input": { @@ -73856,300 +78810,300 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "finished": [ 3 ], "group": [ - 1734 + 2003 ], "id": [ - 3319 + 3588 ], "loser_parent_bracket_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_number": [ - 34 + 35 ], "match_options_id": [ - 3319 + 3588 ], "parent_bracket_id": [ - 3319 + 3588 ], "path": [ - 63 + 64 ], "round": [ - 34 + 35 ], "scheduled_at": [ - 2922 + 3191 ], "scheduled_eta": [ - 2922 + 3191 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id_1": [ - 3319 + 3588 ], "tournament_team_id_2": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_sum_fields": { "group": [ - 1734 + 2003 ], "match_number": [ - 34 + 35 ], "round": [ - 34 + 35 ], "team_1_seed": [ - 34 + 35 ], "team_2_seed": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_sum_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_update_column": {}, "tournament_brackets_updates": { "_inc": [ - 2937 + 3206 ], "_set": [ - 2951 + 3220 ], "where": [ - 2935 + 3204 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_var_pop_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_var_pop_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_var_samp_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_var_samp_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_variance_fields": { "group": [ - 25 + 26 ], "match_number": [ - 25 + 26 ], "round": [ - 25 + 26 ], "team_1_seed": [ - 25 + 26 ], "team_2_seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_brackets_variance_order_by": { "group": [ - 1736 + 2005 ], "match_number": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "team_1_seed": [ - 1736 + 2005 ], "team_2_seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers": { "organizer": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_aggregate": { "aggregate": [ - 2974 + 3243 ], "nodes": [ - 2970 + 3239 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_aggregate_bool_exp": { "count": [ - 2973 + 3242 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_aggregate_bool_exp_count": { "arguments": [ - 2991 + 3260 ], "distinct": [ 3 ], "filter": [ - 2979 + 3248 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_aggregate_fields": { "avg": [ - 2977 + 3246 ], "count": [ - 34, + 35, { "columns": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "distinct": [ @@ -74158,535 +79112,535 @@ export default { } ], "max": [ - 2983 + 3252 ], "min": [ - 2985 + 3254 ], "stddev": [ - 2993 + 3262 ], "stddev_pop": [ - 2995 + 3264 ], "stddev_samp": [ - 2997 + 3266 ], "sum": [ - 3001 + 3270 ], "var_pop": [ - 3005 + 3274 ], "var_samp": [ - 3007 + 3276 ], "variance": [ - 3009 + 3278 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_aggregate_order_by": { "avg": [ - 2978 + 3247 ], "count": [ - 1736 + 2005 ], "max": [ - 2984 + 3253 ], "min": [ - 2986 + 3255 ], "stddev": [ - 2994 + 3263 ], "stddev_pop": [ - 2996 + 3265 ], "stddev_samp": [ - 2998 + 3267 ], "sum": [ - 3002 + 3271 ], "var_pop": [ - 3006 + 3275 ], "var_samp": [ - 3008 + 3277 ], "variance": [ - 3010 + 3279 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_arr_rel_insert_input": { "data": [ - 2982 + 3251 ], "on_conflict": [ - 2988 + 3257 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_avg_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_bool_exp": { "_and": [ - 2979 + 3248 ], "_not": [ - 2979 + 3248 ], "_or": [ - 2979 + 3248 ], "organizer": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_constraint": {}, "tournament_organizers_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_insert_input": { "organizer": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_max_fields": { "steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_max_order_by": { "steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_min_fields": { "steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_min_order_by": { "steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 2970 + 3239 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_on_conflict": { "constraint": [ - 2980 + 3249 ], "update_columns": [ - 3003 + 3272 ], "where": [ - 2979 + 3248 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_order_by": { "organizer": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_pk_columns_input": { "steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_select_column": {}, "tournament_organizers_set_input": { "steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stddev_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stream_cursor_input": { "initial_value": [ - 3000 + 3269 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_stream_cursor_value_input": { "steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_sum_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_update_column": {}, "tournament_organizers_updates": { "_inc": [ - 2981 + 3250 ], "_set": [ - 2992 + 3261 ], "where": [ - 2979 + 3248 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_var_pop_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_var_samp_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_organizers_variance_order_by": { "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages": { "brackets": [ - 2924, + 3193, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "brackets_aggregate": [ - 2925, + 3194, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "e_tournament_stage_type": [ - 693 + 935 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "options": [ - 1458 + 1700 ], "order": [ - 34 + 35 ], "results": [ - 3867, + 4136, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "results_aggregate": [ - 3868, + 4137, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "settings": [ - 946, + 1188, { "path": [ - 63 + 64 ] } ], @@ -74694,103 +79648,103 @@ export default { 3 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "type": [ - 698 + 940 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate": { "aggregate": [ - 3017 + 3286 ], "nodes": [ - 3011 + 3280 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_bool_exp": { "bool_and": [ - 3014 + 3283 ], "bool_or": [ - 3015 + 3284 ], "count": [ - 3016 + 3285 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_bool_exp_bool_and": { "arguments": [ - 3041 + 3310 ], "distinct": [ 3 ], "filter": [ - 3023 + 3292 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_bool_exp_bool_or": { "arguments": [ - 3042 + 3311 ], "distinct": [ 3 ], "filter": [ - 3023 + 3292 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_bool_exp_count": { "arguments": [ - 3040 + 3309 ], "distinct": [ 3 ], "filter": [ - 3023 + 3292 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_fields": { "avg": [ - 3021 + 3290 ], "count": [ - 34, + 35, { "columns": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "distinct": [ @@ -74799,548 +79753,548 @@ export default { } ], "max": [ - 3030 + 3299 ], "min": [ - 3032 + 3301 ], "stddev": [ - 3044 + 3313 ], "stddev_pop": [ - 3046 + 3315 ], "stddev_samp": [ - 3048 + 3317 ], "sum": [ - 3052 + 3321 ], "var_pop": [ - 3056 + 3325 ], "var_samp": [ - 3058 + 3327 ], "variance": [ - 3060 + 3329 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_aggregate_order_by": { "avg": [ - 3022 + 3291 ], "count": [ - 1736 + 2005 ], "max": [ - 3031 + 3300 ], "min": [ - 3033 + 3302 ], "stddev": [ - 3045 + 3314 ], "stddev_pop": [ - 3047 + 3316 ], "stddev_samp": [ - 3049 + 3318 ], "sum": [ - 3053 + 3322 ], "var_pop": [ - 3057 + 3326 ], "var_samp": [ - 3059 + 3328 ], "variance": [ - 3061 + 3330 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_append_input": { "settings": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_arr_rel_insert_input": { "data": [ - 3029 + 3298 ], "on_conflict": [ - 3036 + 3305 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_avg_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_avg_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_bool_exp": { "_and": [ - 3023 + 3292 ], "_not": [ - 3023 + 3292 ], "_or": [ - 3023 + 3292 ], "brackets": [ - 2935 + 3204 ], "brackets_aggregate": [ - 2926 + 3195 ], "decider_best_of": [ - 35 + 36 ], "default_best_of": [ - 35 + 36 ], "e_tournament_stage_type": [ - 696 + 938 ], "groups": [ - 35 + 36 ], "id": [ - 3320 + 3589 ], "match_options_id": [ - 3320 + 3589 ], "max_teams": [ - 35 + 36 ], "min_teams": [ - 35 + 36 ], "options": [ - 1462 + 1704 ], "order": [ - 35 + 36 ], "results": [ - 3886 + 4155 ], "results_aggregate": [ - 3869 + 4138 ], "settings": [ - 948 + 1190 ], "third_place_match": [ 4 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "type": [ - 699 + 941 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_constraint": {}, "tournament_stages_delete_at_path_input": { "settings": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_delete_elem_input": { "settings": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_delete_key_input": { "settings": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_inc_input": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_insert_input": { "brackets": [ - 2932 + 3201 ], "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "e_tournament_stage_type": [ - 704 + 946 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "options": [ - 1469 + 1711 ], "order": [ - 34 + 35 ], "results": [ - 3883 + 4152 ], "settings": [ - 946 + 1188 ], "third_place_match": [ 3 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "type": [ - 698 + 940 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_max_fields": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_max_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_min_fields": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_min_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3011 + 3280 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_obj_rel_insert_input": { "data": [ - 3029 + 3298 ], "on_conflict": [ - 3036 + 3305 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_on_conflict": { "constraint": [ - 3024 + 3293 ], "update_columns": [ - 3054 + 3323 ], "where": [ - 3023 + 3292 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_order_by": { "brackets_aggregate": [ - 2931 + 3200 ], "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "e_tournament_stage_type": [ - 706 + 948 ], "groups": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "options": [ - 1471 + 1713 ], "order": [ - 1736 + 2005 ], "results_aggregate": [ - 3882 + 4151 ], "settings": [ - 1736 + 2005 ], "third_place_match": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_prepend_input": { "settings": [ - 946 + 1188 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_select_column": {}, @@ -75348,523 +80302,523 @@ export default { "tournament_stages_select_column_tournament_stages_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_stages_set_input": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "settings": [ - 946 + 1188 ], "third_place_match": [ 3 ], "tournament_id": [ - 3319 + 3588 ], "type": [ - 698 + 940 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_pop_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_pop_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_samp_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stddev_samp_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stream_cursor_input": { "initial_value": [ - 3051 + 3320 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_stream_cursor_value_input": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "settings": [ - 946 + 1188 ], "third_place_match": [ 3 ], "tournament_id": [ - 3319 + 3588 ], "type": [ - 698 + 940 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_sum_fields": { "decider_best_of": [ - 34 + 35 ], "default_best_of": [ - 34 + 35 ], "groups": [ - 34 + 35 ], "max_teams": [ - 34 + 35 ], "min_teams": [ - 34 + 35 ], "order": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_sum_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_update_column": {}, "tournament_stages_updates": { "_append": [ - 3019 + 3288 ], "_delete_at_path": [ - 3025 + 3294 ], "_delete_elem": [ - 3026 + 3295 ], "_delete_key": [ - 3027 + 3296 ], "_inc": [ - 3028 + 3297 ], "_prepend": [ - 3039 + 3308 ], "_set": [ - 3043 + 3312 ], "where": [ - 3023 + 3292 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_var_pop_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_var_pop_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_var_samp_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_var_samp_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_variance_fields": { "decider_best_of": [ - 25 + 26 ], "default_best_of": [ - 25 + 26 ], "groups": [ - 25 + 26 ], "max_teams": [ - 25 + 26 ], "min_teams": [ - 25 + 26 ], "order": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_stages_variance_order_by": { "decider_best_of": [ - 1736 + 2005 ], "default_best_of": [ - 1736 + 2005 ], "groups": [ - 1736 + 2005 ], "max_teams": [ - 1736 + 2005 ], "min_teams": [ - 1736 + 2005 ], "order": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2603 + 2872 ], "invited_by_player_steam_id": [ - 162 + 163 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "team": [ - 3144 + 3413 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_aggregate": { "aggregate": [ - 3066 + 3335 ], "nodes": [ - 3062 + 3331 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_aggregate_bool_exp": { "count": [ - 3065 + 3334 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_aggregate_bool_exp_count": { "arguments": [ - 3083 + 3352 ], "distinct": [ 3 ], "filter": [ - 3071 + 3340 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_aggregate_fields": { "avg": [ - 3069 + 3338 ], "count": [ - 34, + 35, { "columns": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "distinct": [ @@ -75873,623 +80827,623 @@ export default { } ], "max": [ - 3075 + 3344 ], "min": [ - 3077 + 3346 ], "stddev": [ - 3085 + 3354 ], "stddev_pop": [ - 3087 + 3356 ], "stddev_samp": [ - 3089 + 3358 ], "sum": [ - 3093 + 3362 ], "var_pop": [ - 3097 + 3366 ], "var_samp": [ - 3099 + 3368 ], "variance": [ - 3101 + 3370 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_aggregate_order_by": { "avg": [ - 3070 + 3339 ], "count": [ - 1736 + 2005 ], "max": [ - 3076 + 3345 ], "min": [ - 3078 + 3347 ], "stddev": [ - 3086 + 3355 ], "stddev_pop": [ - 3088 + 3357 ], "stddev_samp": [ - 3090 + 3359 ], "sum": [ - 3094 + 3363 ], "var_pop": [ - 3098 + 3367 ], "var_samp": [ - 3100 + 3369 ], "variance": [ - 3102 + 3371 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_arr_rel_insert_input": { "data": [ - 3074 + 3343 ], "on_conflict": [ - 3080 + 3349 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_avg_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_avg_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_bool_exp": { "_and": [ - 3071 + 3340 ], "_not": [ - 3071 + 3340 ], "_or": [ - 3071 + 3340 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "invited_by": [ - 2607 + 2876 ], "invited_by_player_steam_id": [ - 163 + 164 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "team": [ - 3153 + 3422 ], "tournament_team_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_constraint": {}, "tournament_team_invites_inc_input": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by": [ - 2614 + 2883 ], "invited_by_player_steam_id": [ - 162 + 163 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "team": [ - 3162 + 3431 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3062 + 3331 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_on_conflict": { "constraint": [ - 3072 + 3341 ], "update_columns": [ - 3095 + 3364 ], "where": [ - 3071 + 3340 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invited_by": [ - 2616 + 2885 ], "invited_by_player_steam_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "team": [ - 3164 + 3433 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_select_column": {}, "tournament_team_invites_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stddev_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stream_cursor_input": { "initial_value": [ - 3092 + 3361 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_sum_fields": { "invited_by_player_steam_id": [ - 162 + 163 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_sum_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_update_column": {}, "tournament_team_invites_updates": { "_inc": [ - 3073 + 3342 ], "_set": [ - 3084 + 3353 ], "where": [ - 3071 + 3340 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_var_pop_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_var_pop_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_var_samp_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_var_samp_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_variance_fields": { "invited_by_player_steam_id": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_invites_variance_order_by": { "invited_by_player_steam_id": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster": { "e_team_role": [ - 632 + 874 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team": [ - 3144 + 3413 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_aggregate": { "aggregate": [ - 3107 + 3376 ], "nodes": [ - 3103 + 3372 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_aggregate_bool_exp": { "count": [ - 3106 + 3375 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_aggregate_bool_exp_count": { "arguments": [ - 3124 + 3393 ], "distinct": [ 3 ], "filter": [ - 3112 + 3381 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_aggregate_fields": { "avg": [ - 3110 + 3379 ], "count": [ - 34, + 35, { "columns": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "distinct": [ @@ -76498,469 +81452,469 @@ export default { } ], "max": [ - 3116 + 3385 ], "min": [ - 3118 + 3387 ], "stddev": [ - 3126 + 3395 ], "stddev_pop": [ - 3128 + 3397 ], "stddev_samp": [ - 3130 + 3399 ], "sum": [ - 3134 + 3403 ], "var_pop": [ - 3138 + 3407 ], "var_samp": [ - 3140 + 3409 ], "variance": [ - 3142 + 3411 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_aggregate_order_by": { "avg": [ - 3111 + 3380 ], "count": [ - 1736 + 2005 ], "max": [ - 3117 + 3386 ], "min": [ - 3119 + 3388 ], "stddev": [ - 3127 + 3396 ], "stddev_pop": [ - 3129 + 3398 ], "stddev_samp": [ - 3131 + 3400 ], "sum": [ - 3135 + 3404 ], "var_pop": [ - 3139 + 3408 ], "var_samp": [ - 3141 + 3410 ], "variance": [ - 3143 + 3412 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_arr_rel_insert_input": { "data": [ - 3115 + 3384 ], "on_conflict": [ - 3121 + 3390 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_avg_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_avg_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_bool_exp": { "_and": [ - 3112 + 3381 ], "_not": [ - 3112 + 3381 ], "_or": [ - 3112 + 3381 ], "e_team_role": [ - 635 + 877 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "role": [ - 638 + 880 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "tournament_team": [ - 3153 + 3422 ], "tournament_team_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_constraint": {}, "tournament_team_roster_inc_input": { "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_insert_input": { "e_team_role": [ - 643 + 885 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team": [ - 3162 + 3431 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_max_fields": { "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_max_order_by": { "player_steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_min_fields": { "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_min_order_by": { "player_steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3103 + 3372 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_on_conflict": { "constraint": [ - 3113 + 3382 ], "update_columns": [ - 3136 + 3405 ], "where": [ - 3112 + 3381 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_order_by": { "e_team_role": [ - 645 + 887 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "role": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team": [ - 3164 + 3433 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_pk_columns_input": { "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_select_column": {}, "tournament_team_roster_set_input": { "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_pop_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_samp_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stddev_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stream_cursor_input": { "initial_value": [ - 3133 + 3402 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_stream_cursor_value_input": { "player_steam_id": [ - 162 + 163 ], "role": [ - 637 + 879 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_sum_fields": { "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_sum_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_update_column": {}, "tournament_team_roster_updates": { "_inc": [ - 3114 + 3383 ], "_set": [ - 3125 + 3394 ], "where": [ - 3112 + 3381 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_var_pop_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_var_pop_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_var_samp_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_var_samp_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_variance_fields": { "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_team_roster_variance_order_by": { "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams": { @@ -76968,187 +81922,187 @@ export default { 3 ], "captain": [ - 2603 + 2872 ], "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "creator": [ - 2603 + 2872 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invites": [ - 3062, + 3331, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "invites_aggregate": [ - 3063, + 3332, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "results": [ - 3867 + 4136 ], "roster": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "roster_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team": [ - 2879 + 3148 ], "team_id": [ - 3319 + 3588 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_aggregate": { "aggregate": [ - 3148 + 3417 ], "nodes": [ - 3144 + 3413 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_aggregate_bool_exp": { "count": [ - 3147 + 3416 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_aggregate_bool_exp_count": { "arguments": [ - 3166 + 3435 ], "distinct": [ 3 ], "filter": [ - 3153 + 3422 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_aggregate_fields": { "avg": [ - 3151 + 3420 ], "count": [ - 34, + 35, { "columns": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "distinct": [ @@ -77157,926 +82111,926 @@ export default { } ], "max": [ - 3157 + 3426 ], "min": [ - 3159 + 3428 ], "stddev": [ - 3168 + 3437 ], "stddev_pop": [ - 3170 + 3439 ], "stddev_samp": [ - 3172 + 3441 ], "sum": [ - 3176 + 3445 ], "var_pop": [ - 3180 + 3449 ], "var_samp": [ - 3182 + 3451 ], "variance": [ - 3184 + 3453 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_aggregate_order_by": { "avg": [ - 3152 + 3421 ], "count": [ - 1736 + 2005 ], "max": [ - 3158 + 3427 ], "min": [ - 3160 + 3429 ], "stddev": [ - 3169 + 3438 ], "stddev_pop": [ - 3171 + 3440 ], "stddev_samp": [ - 3173 + 3442 ], "sum": [ - 3177 + 3446 ], "var_pop": [ - 3181 + 3450 ], "var_samp": [ - 3183 + 3452 ], "variance": [ - 3185 + 3454 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_arr_rel_insert_input": { "data": [ - 3156 + 3425 ], "on_conflict": [ - 3163 + 3432 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_avg_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_avg_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_bool_exp": { "_and": [ - 3153 + 3422 ], "_not": [ - 3153 + 3422 ], "_or": [ - 3153 + 3422 ], "can_manage": [ 4 ], "captain": [ - 2607 + 2876 ], "captain_steam_id": [ - 163 + 164 ], "created_at": [ - 2923 + 3192 ], "creator": [ - 2607 + 2876 ], "eligible_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "invites": [ - 3071 + 3340 ], "invites_aggregate": [ - 3064 + 3333 ], "name": [ - 65 + 66 ], "owner_steam_id": [ - 163 + 164 ], "results": [ - 3886 + 4155 ], "roster": [ - 3112 + 3381 ], "roster_aggregate": [ - 3105 + 3374 ], "seed": [ - 35 + 36 ], "short_name": [ - 65 + 66 ], "team": [ - 2888 + 3157 ], "team_id": [ - 3320 + 3589 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_constraint": {}, "tournament_teams_inc_input": { "captain_steam_id": [ - 162 + 163 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_insert_input": { "captain": [ - 2614 + 2883 ], "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "creator": [ - 2614 + 2883 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "invites": [ - 3068 + 3337 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "results": [ - 3895 + 4164 ], "roster": [ - 3109 + 3378 ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team": [ - 2897 + 3166 ], "team_id": [ - 3319 + 3588 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_max_fields": { "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_max_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "eligible_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "short_name": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_min_fields": { "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_min_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "eligible_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "short_name": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3144 + 3413 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_obj_rel_insert_input": { "data": [ - 3156 + 3425 ], "on_conflict": [ - 3163 + 3432 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_on_conflict": { "constraint": [ - 3154 + 3423 ], "update_columns": [ - 3178 + 3447 ], "where": [ - 3153 + 3422 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_order_by": { "can_manage": [ - 1736 + 2005 ], "captain": [ - 2616 + 2885 ], "captain_steam_id": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "creator": [ - 2616 + 2885 ], "eligible_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "invites_aggregate": [ - 3067 + 3336 ], "name": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "results": [ - 3897 + 4166 ], "roster_aggregate": [ - 3108 + 3377 ], "seed": [ - 1736 + 2005 ], "short_name": [ - 1736 + 2005 ], "team": [ - 2899 + 3168 ], "team_id": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_select_column": {}, "tournament_teams_set_input": { "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_pop_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_pop_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_samp_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stddev_samp_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stream_cursor_input": { "initial_value": [ - 3175 + 3444 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_stream_cursor_value_input": { "captain_steam_id": [ - 162 + 163 ], "created_at": [ - 2922 + 3191 ], "eligible_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "short_name": [ - 63 + 64 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_sum_fields": { "captain_steam_id": [ - 162 + 163 ], "owner_steam_id": [ - 162 + 163 ], "seed": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_sum_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_update_column": {}, "tournament_teams_updates": { "_inc": [ - 3155 + 3424 ], "_set": [ - 3167 + 3436 ], "where": [ - 3153 + 3422 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_var_pop_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_var_pop_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_var_samp_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_var_samp_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_variance_fields": { "captain_steam_id": [ - 25 + 26 ], "owner_steam_id": [ - 25 + 26 ], "seed": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_teams_variance_order_by": { "captain_steam_id": [ - 1736 + 2005 ], "owner_steam_id": [ - 1736 + 2005 ], "seed": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "manual": [ 3 ], "placement": [ - 34 + 35 ], "placement_tier": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "team": [ - 2879 + 3148 ], "team_id": [ - 3319 + 3588 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team": [ - 3144 + 3413 ], "tournament_team_id": [ - 3319 + 3588 ], "trophy_config": [ - 3231 + 3500 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate": { "aggregate": [ - 3192 + 3461 ], "nodes": [ - 3186 + 3455 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_bool_exp": { "bool_and": [ - 3189 + 3458 ], "bool_or": [ - 3190 + 3459 ], "count": [ - 3191 + 3460 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_bool_exp_bool_and": { "arguments": [ - 3210 + 3479 ], "distinct": [ 3 ], "filter": [ - 3197 + 3466 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_bool_exp_bool_or": { "arguments": [ - 3211 + 3480 ], "distinct": [ 3 ], "filter": [ - 3197 + 3466 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_bool_exp_count": { "arguments": [ - 3209 + 3478 ], "distinct": [ 3 ], "filter": [ - 3197 + 3466 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_fields": { "avg": [ - 3195 + 3464 ], "count": [ - 34, + 35, { "columns": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "distinct": [ @@ -78085,413 +83039,413 @@ export default { } ], "max": [ - 3201 + 3470 ], "min": [ - 3203 + 3472 ], "stddev": [ - 3213 + 3482 ], "stddev_pop": [ - 3215 + 3484 ], "stddev_samp": [ - 3217 + 3486 ], "sum": [ - 3221 + 3490 ], "var_pop": [ - 3225 + 3494 ], "var_samp": [ - 3227 + 3496 ], "variance": [ - 3229 + 3498 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_aggregate_order_by": { "avg": [ - 3196 + 3465 ], "count": [ - 1736 + 2005 ], "max": [ - 3202 + 3471 ], "min": [ - 3204 + 3473 ], "stddev": [ - 3214 + 3483 ], "stddev_pop": [ - 3216 + 3485 ], "stddev_samp": [ - 3218 + 3487 ], "sum": [ - 3222 + 3491 ], "var_pop": [ - 3226 + 3495 ], "var_samp": [ - 3228 + 3497 ], "variance": [ - 3230 + 3499 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_arr_rel_insert_input": { "data": [ - 3200 + 3469 ], "on_conflict": [ - 3206 + 3475 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_avg_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_avg_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_bool_exp": { "_and": [ - 3197 + 3466 ], "_not": [ - 3197 + 3466 ], "_or": [ - 3197 + 3466 ], "created_at": [ - 2923 + 3192 ], "id": [ - 3320 + 3589 ], "manual": [ 4 ], "placement": [ - 35 + 36 ], "placement_tier": [ - 65 + 66 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "team": [ - 2888 + 3157 ], "team_id": [ - 3320 + 3589 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "tournament_team": [ - 3153 + 3422 ], "tournament_team_id": [ - 3320 + 3589 ], "trophy_config": [ - 3240 + 3509 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_constraint": {}, "tournament_trophies_inc_input": { "placement": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_insert_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "manual": [ 3 ], "placement": [ - 34 + 35 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "team": [ - 2897 + 3166 ], "team_id": [ - 3319 + 3588 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team": [ - 3162 + 3431 ], "tournament_team_id": [ - 3319 + 3588 ], "trophy_config": [ - 3249 + 3518 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_max_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "placement": [ - 34 + 35 ], "placement_tier": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_max_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "placement_tier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_min_fields": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "placement": [ - 34 + 35 ], "placement_tier": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_min_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "placement_tier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "team_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3186 + 3455 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_on_conflict": { "constraint": [ - 3198 + 3467 ], "update_columns": [ - 3223 + 3492 ], "where": [ - 3197 + 3466 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_order_by": { "created_at": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "manual": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "placement_tier": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "team": [ - 2899 + 3168 ], "team_id": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team": [ - 3164 + 3433 ], "tournament_team_id": [ - 1736 + 2005 ], "trophy_config": [ - 3251 + 3520 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_select_column": {}, @@ -78499,322 +83453,322 @@ export default { "tournament_trophies_select_column_tournament_trophies_aggregate_bool_exp_bool_or_arguments_columns": {}, "tournament_trophies_set_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "manual": [ 3 ], "placement": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_pop_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_pop_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_samp_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stddev_samp_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stream_cursor_input": { "initial_value": [ - 3220 + 3489 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "id": [ - 3319 + 3588 ], "manual": [ 3 ], "placement": [ - 34 + 35 ], "placement_tier": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "team_id": [ - 3319 + 3588 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_sum_fields": { "placement": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_sum_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_update_column": {}, "tournament_trophies_updates": { "_inc": [ - 3199 + 3468 ], "_set": [ - 3212 + 3481 ], "where": [ - 3197 + 3466 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_var_pop_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_var_pop_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_var_samp_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_var_samp_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_variance_fields": { "placement": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophies_variance_order_by": { "placement": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_aggregate": { "aggregate": [ - 3235 + 3504 ], "nodes": [ - 3231 + 3500 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_aggregate_bool_exp": { "count": [ - 3234 + 3503 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_aggregate_bool_exp_count": { "arguments": [ - 3253 + 3522 ], "distinct": [ 3 ], "filter": [ - 3240 + 3509 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_aggregate_fields": { "avg": [ - 3238 + 3507 ], "count": [ - 34, + 35, { "columns": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "distinct": [ @@ -78823,626 +83777,626 @@ export default { } ], "max": [ - 3244 + 3513 ], "min": [ - 3246 + 3515 ], "stddev": [ - 3255 + 3524 ], "stddev_pop": [ - 3257 + 3526 ], "stddev_samp": [ - 3259 + 3528 ], "sum": [ - 3263 + 3532 ], "var_pop": [ - 3267 + 3536 ], "var_samp": [ - 3269 + 3538 ], "variance": [ - 3271 + 3540 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_aggregate_order_by": { "avg": [ - 3239 + 3508 ], "count": [ - 1736 + 2005 ], "max": [ - 3245 + 3514 ], "min": [ - 3247 + 3516 ], "stddev": [ - 3256 + 3525 ], "stddev_pop": [ - 3258 + 3527 ], "stddev_samp": [ - 3260 + 3529 ], "sum": [ - 3264 + 3533 ], "var_pop": [ - 3268 + 3537 ], "var_samp": [ - 3270 + 3539 ], "variance": [ - 3272 + 3541 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_arr_rel_insert_input": { "data": [ - 3243 + 3512 ], "on_conflict": [ - 3250 + 3519 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_avg_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_avg_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_bool_exp": { "_and": [ - 3240 + 3509 ], "_not": [ - 3240 + 3509 ], "_or": [ - 3240 + 3509 ], "created_at": [ - 2923 + 3192 ], "custom_name": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "image_url": [ - 65 + 66 ], "placement": [ - 35 + 36 ], "silhouette": [ - 35 + 36 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "updated_at": [ - 2923 + 3192 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_constraint": {}, "tournament_trophy_configs_inc_input": { "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_insert_input": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_max_fields": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_max_order_by": { "created_at": [ - 1736 + 2005 ], "custom_name": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "image_url": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_min_fields": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_min_order_by": { "created_at": [ - 1736 + 2005 ], "custom_name": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "image_url": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3231 + 3500 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_obj_rel_insert_input": { "data": [ - 3243 + 3512 ], "on_conflict": [ - 3250 + 3519 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_on_conflict": { "constraint": [ - 3241 + 3510 ], "update_columns": [ - 3265 + 3534 ], "where": [ - 3240 + 3509 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_order_by": { "created_at": [ - 1736 + 2005 ], "custom_name": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "image_url": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "updated_at": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_select_column": {}, "tournament_trophy_configs_set_input": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_pop_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_pop_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_samp_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stddev_samp_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stream_cursor_input": { "initial_value": [ - 3262 + 3531 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_stream_cursor_value_input": { "created_at": [ - 2922 + 3191 ], "custom_name": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "image_url": [ - 63 + 64 ], "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "updated_at": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_sum_fields": { "placement": [ - 34 + 35 ], "silhouette": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_sum_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_update_column": {}, "tournament_trophy_configs_updates": { "_inc": [ - 3242 + 3511 ], "_set": [ - 3254 + 3523 ], "where": [ - 3240 + 3509 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_var_pop_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_var_pop_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_var_samp_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_var_samp_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_variance_fields": { "placement": [ - 25 + 26 ], "silhouette": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournament_trophy_configs_variance_order_by": { "placement": [ - 1736 + 2005 ], "silhouette": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments": { "admin": [ - 2603 + 2872 ], "auto_start": [ 3 @@ -79472,13 +84426,13 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_notifications_enabled": [ 3 @@ -79520,22 +84474,22 @@ export default { 3 ], "discord_role_id": [ - 63 + 64 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 63 + 64 ], "e_tournament_status": [ - 714 + 956 ], "has_min_teams": [ 3 ], "id": [ - 3319 + 3588 ], "is_organizer": [ 3 @@ -79544,334 +84498,334 @@ export default { 3 ], "match_options_id": [ - 3319 + 3588 ], "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "name": [ - 63 + 64 ], "options": [ - 1458 + 1700 ], "organizer_steam_id": [ - 162 + 163 ], "organizers": [ - 2970, + 3239, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "organizers_aggregate": [ - 2971, + 3240, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "player_stats": [ - 3978, + 4247, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "player_stats_aggregate": [ - 3979, + 4248, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "results": [ - 3927, + 4196, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "results_aggregate": [ - 3928, + 4197, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "rosters": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "rosters_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "stages": [ - 3011, + 3280, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "stages_aggregate": [ - 3012, + 3281, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "start": [ - 2922 + 3191 ], "status": [ - 719 + 961 ], "teams": [ - 3144, + 3413, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "teams_aggregate": [ - 3145, + 3414, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "trophies": [ - 3186, + 3455, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "trophies_aggregate": [ - 3187, + 3456, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], @@ -79879,138 +84833,138 @@ export default { 3 ], "trophy_configs": [ - 3231, + 3500, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "trophy_configs_aggregate": [ - 3232, + 3501, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate": { "aggregate": [ - 3279 + 3548 ], "nodes": [ - 3273 + 3542 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_bool_exp": { "bool_and": [ - 3276 + 3545 ], "bool_or": [ - 3277 + 3546 ], "count": [ - 3278 + 3547 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_bool_exp_bool_and": { "arguments": [ - 3298 + 3567 ], "distinct": [ 3 ], "filter": [ - 3284 + 3553 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_bool_exp_bool_or": { "arguments": [ - 3299 + 3568 ], "distinct": [ 3 ], "filter": [ - 3284 + 3553 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_bool_exp_count": { "arguments": [ - 3297 + 3566 ], "distinct": [ 3 ], "filter": [ - 3284 + 3553 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_fields": { "avg": [ - 3282 + 3551 ], "count": [ - 34, + 35, { "columns": [ - 3297, + 3566, "[tournaments_select_column!]" ], "distinct": [ @@ -80019,119 +84973,119 @@ export default { } ], "max": [ - 3288 + 3557 ], "min": [ - 3290 + 3559 ], "stddev": [ - 3301 + 3570 ], "stddev_pop": [ - 3303 + 3572 ], "stddev_samp": [ - 3305 + 3574 ], "sum": [ - 3309 + 3578 ], "var_pop": [ - 3313 + 3582 ], "var_samp": [ - 3315 + 3584 ], "variance": [ - 3317 + 3586 ], "__typename": [ - 63 + 64 ] }, "tournaments_aggregate_order_by": { "avg": [ - 3283 + 3552 ], "count": [ - 1736 + 2005 ], "max": [ - 3289 + 3558 ], "min": [ - 3291 + 3560 ], "stddev": [ - 3302 + 3571 ], "stddev_pop": [ - 3304 + 3573 ], "stddev_samp": [ - 3306 + 3575 ], "sum": [ - 3310 + 3579 ], "var_pop": [ - 3314 + 3583 ], "var_samp": [ - 3316 + 3585 ], "variance": [ - 3318 + 3587 ], "__typename": [ - 63 + 64 ] }, "tournaments_arr_rel_insert_input": { "data": [ - 3287 + 3556 ], "on_conflict": [ - 3294 + 3563 ], "__typename": [ - 63 + 64 ] }, "tournaments_avg_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_avg_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_bool_exp": { "_and": [ - 3284 + 3553 ], "_not": [ - 3284 + 3553 ], "_or": [ - 3284 + 3553 ], "admin": [ - 2607 + 2876 ], "auto_start": [ 4 @@ -80161,13 +85115,13 @@ export default { 4 ], "created_at": [ - 2923 + 3192 ], "description": [ - 65 + 66 ], "discord_guild_id": [ - 65 + 66 ], "discord_notifications_enabled": [ 4 @@ -80209,22 +85163,22 @@ export default { 4 ], "discord_role_id": [ - 65 + 66 ], "discord_voice_enabled": [ 4 ], "discord_webhook": [ - 65 + 66 ], "e_tournament_status": [ - 717 + 959 ], "has_min_teams": [ 4 ], "id": [ - 3320 + 3589 ], "is_organizer": [ 4 @@ -80233,108 +85187,108 @@ export default { 4 ], "match_options_id": [ - 3320 + 3589 ], "max_players_per_lineup": [ - 35 + 36 ], "min_players_per_lineup": [ - 35 + 36 ], "name": [ - 65 + 66 ], "options": [ - 1462 + 1704 ], "organizer_steam_id": [ - 163 + 164 ], "organizers": [ - 2979 + 3248 ], "organizers_aggregate": [ - 2972 + 3241 ], "player_stats": [ - 3997 + 4266 ], "player_stats_aggregate": [ - 3980 + 4249 ], "results": [ - 3946 + 4215 ], "results_aggregate": [ - 3929 + 4198 ], "rosters": [ - 3112 + 3381 ], "rosters_aggregate": [ - 3105 + 3374 ], "stages": [ - 3023 + 3292 ], "stages_aggregate": [ - 3013 + 3282 ], "start": [ - 2923 + 3192 ], "status": [ - 720 + 962 ], "teams": [ - 3153 + 3422 ], "teams_aggregate": [ - 3146 + 3415 ], "trophies": [ - 3197 + 3466 ], "trophies_aggregate": [ - 3188 + 3457 ], "trophies_enabled": [ 4 ], "trophy_configs": [ - 3240 + 3509 ], "trophy_configs_aggregate": [ - 3233 + 3502 ], "__typename": [ - 63 + 64 ] }, "tournaments_constraint": {}, "tournaments_inc_input": { "organizer_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournaments_insert_input": { "admin": [ - 2614 + 2883 ], "auto_start": [ 3 ], "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_notifications_enabled": [ 3 @@ -80376,421 +85330,421 @@ export default { 3 ], "discord_role_id": [ - 63 + 64 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 63 + 64 ], "e_tournament_status": [ - 725 + 967 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "options": [ - 1469 + 1711 ], "organizer_steam_id": [ - 162 + 163 ], "organizers": [ - 2976 + 3245 ], "player_stats": [ - 3994 + 4263 ], "results": [ - 3943 + 4212 ], "rosters": [ - 3109 + 3378 ], "stages": [ - 3020 + 3289 ], "start": [ - 2922 + 3191 ], "status": [ - 719 + 961 ], "teams": [ - 3150 + 3419 ], "trophies": [ - 3194 + 3463 ], "trophies_enabled": [ 3 ], "trophy_configs": [ - 3237 + 3506 ], "__typename": [ - 63 + 64 ] }, "tournaments_max_fields": { "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_role_id": [ - 63 + 64 ], "discord_webhook": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "name": [ - 63 + 64 ], "organizer_steam_id": [ - 162 + 163 ], "start": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournaments_max_order_by": { "created_at": [ - 1736 + 2005 ], "description": [ - 1736 + 2005 ], "discord_guild_id": [ - 1736 + 2005 ], "discord_role_id": [ - 1736 + 2005 ], "discord_webhook": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "organizer_steam_id": [ - 1736 + 2005 ], "start": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_min_fields": { "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_role_id": [ - 63 + 64 ], "discord_webhook": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "name": [ - 63 + 64 ], "organizer_steam_id": [ - 162 + 163 ], "start": [ - 2922 + 3191 ], "__typename": [ - 63 + 64 ] }, "tournaments_min_order_by": { "created_at": [ - 1736 + 2005 ], "description": [ - 1736 + 2005 ], "discord_guild_id": [ - 1736 + 2005 ], "discord_role_id": [ - 1736 + 2005 ], "discord_webhook": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "organizer_steam_id": [ - 1736 + 2005 ], "start": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3273 + 3542 ], "__typename": [ - 63 + 64 ] }, "tournaments_obj_rel_insert_input": { "data": [ - 3287 + 3556 ], "on_conflict": [ - 3294 + 3563 ], "__typename": [ - 63 + 64 ] }, "tournaments_on_conflict": { "constraint": [ - 3285 + 3554 ], "update_columns": [ - 3311 + 3580 ], "where": [ - 3284 + 3553 ], "__typename": [ - 63 + 64 ] }, "tournaments_order_by": { "admin": [ - 2616 + 2885 ], "auto_start": [ - 1736 + 2005 ], "can_cancel": [ - 1736 + 2005 ], "can_close_registration": [ - 1736 + 2005 ], "can_join": [ - 1736 + 2005 ], "can_open_registration": [ - 1736 + 2005 ], "can_pause": [ - 1736 + 2005 ], "can_resume": [ - 1736 + 2005 ], "can_setup": [ - 1736 + 2005 ], "can_start": [ - 1736 + 2005 ], "created_at": [ - 1736 + 2005 ], "description": [ - 1736 + 2005 ], "discord_guild_id": [ - 1736 + 2005 ], "discord_notifications_enabled": [ - 1736 + 2005 ], "discord_notify_Canceled": [ - 1736 + 2005 ], "discord_notify_Finished": [ - 1736 + 2005 ], "discord_notify_Forfeit": [ - 1736 + 2005 ], "discord_notify_Live": [ - 1736 + 2005 ], "discord_notify_MapPaused": [ - 1736 + 2005 ], "discord_notify_PickingPlayers": [ - 1736 + 2005 ], "discord_notify_Scheduled": [ - 1736 + 2005 ], "discord_notify_Surrendered": [ - 1736 + 2005 ], "discord_notify_Tie": [ - 1736 + 2005 ], "discord_notify_Veto": [ - 1736 + 2005 ], "discord_notify_WaitingForCheckIn": [ - 1736 + 2005 ], "discord_notify_WaitingForServer": [ - 1736 + 2005 ], "discord_role_id": [ - 1736 + 2005 ], "discord_voice_enabled": [ - 1736 + 2005 ], "discord_webhook": [ - 1736 + 2005 ], "e_tournament_status": [ - 727 + 969 ], "has_min_teams": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "is_organizer": [ - 1736 + 2005 ], "joined_tournament": [ - 1736 + 2005 ], "match_options_id": [ - 1736 + 2005 ], "max_players_per_lineup": [ - 1736 + 2005 ], "min_players_per_lineup": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "options": [ - 1471 + 1713 ], "organizer_steam_id": [ - 1736 + 2005 ], "organizers_aggregate": [ - 2975 + 3244 ], "player_stats_aggregate": [ - 3993 + 4262 ], "results_aggregate": [ - 3942 + 4211 ], "rosters_aggregate": [ - 3108 + 3377 ], "stages_aggregate": [ - 3018 + 3287 ], "start": [ - 1736 + 2005 ], "status": [ - 1736 + 2005 ], "teams_aggregate": [ - 3149 + 3418 ], "trophies_aggregate": [ - 3193 + 3462 ], "trophies_enabled": [ - 1736 + 2005 ], "trophy_configs_aggregate": [ - 3236 + 3505 ], "__typename": [ - 63 + 64 ] }, "tournaments_pk_columns_input": { "id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "tournaments_select_column": {}, @@ -80801,13 +85755,13 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_notifications_enabled": [ 3 @@ -80849,114 +85803,114 @@ export default { 3 ], "discord_role_id": [ - 63 + 64 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "organizer_steam_id": [ - 162 + 163 ], "start": [ - 2922 + 3191 ], "status": [ - 719 + 961 ], "trophies_enabled": [ 3 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_pop_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_pop_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_samp_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_stddev_samp_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_stream_cursor_input": { "initial_value": [ - 3308 + 3577 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "tournaments_stream_cursor_value_input": { @@ -80964,13 +85918,13 @@ export default { 3 ], "created_at": [ - 2922 + 3191 ], "description": [ - 63 + 64 ], "discord_guild_id": [ - 63 + 64 ], "discord_notifications_enabled": [ 3 @@ -81012,242 +85966,242 @@ export default { 3 ], "discord_role_id": [ - 63 + 64 ], "discord_voice_enabled": [ 3 ], "discord_webhook": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_options_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "organizer_steam_id": [ - 162 + 163 ], "start": [ - 2922 + 3191 ], "status": [ - 719 + 961 ], "trophies_enabled": [ 3 ], "__typename": [ - 63 + 64 ] }, "tournaments_sum_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "tournaments_sum_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_update_column": {}, "tournaments_updates": { "_inc": [ - 3286 + 3555 ], "_set": [ - 3300 + 3569 ], "where": [ - 3284 + 3553 ], "__typename": [ - 63 + 64 ] }, "tournaments_var_pop_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_var_pop_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_var_samp_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_var_samp_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "tournaments_variance_fields": { "max_players_per_lineup": [ - 34 + 35 ], "min_players_per_lineup": [ - 34 + 35 ], "organizer_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "tournaments_variance_order_by": { "organizer_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "uuid": {}, "uuid_comparison_exp": { "_eq": [ - 3319 + 3588 ], "_gt": [ - 3319 + 3588 ], "_gte": [ - 3319 + 3588 ], "_in": [ - 3319 + 3588 ], "_is_null": [ 3 ], "_lt": [ - 3319 + 3588 ], "_lte": [ - 3319 + 3588 ], "_neq": [ - 3319 + 3588 ], "_nin": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status": { "demo_free_gpu_nodes": [ - 34 + 35 ], "demo_in_progress": [ 3 ], "demo_total_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes_for_batch": [ - 34 + 35 ], "highlights_in_progress": [ 3 ], "id": [ - 34 + 35 ], "live_in_progress": [ 3 ], "registered_gpu_nodes": [ - 34 + 35 ], "rendering_total_gpu_nodes": [ - 34 + 35 ], "renders_paused_for_active_match": [ 3 ], "streaming_free_gpu_nodes": [ - 34 + 35 ], "streaming_total_gpu_nodes": [ - 34 + 35 ], "total_gpu_nodes": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_aggregate": { "aggregate": [ - 3323 + 3592 ], "nodes": [ - 3321 + 3590 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_aggregate_fields": { "avg": [ - 3324 + 3593 ], "count": [ - 34, + 35, { "columns": [ - 3329, + 3598, "[v_gpu_pool_status_select_column!]" ], "distinct": [ @@ -81256,546 +86210,546 @@ export default { } ], "max": [ - 3326 + 3595 ], "min": [ - 3327 + 3596 ], "stddev": [ - 3330 + 3599 ], "stddev_pop": [ - 3331 + 3600 ], "stddev_samp": [ - 3332 + 3601 ], "sum": [ - 3335 + 3604 ], "var_pop": [ - 3336 + 3605 ], "var_samp": [ - 3337 + 3606 ], "variance": [ - 3338 + 3607 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_avg_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_bool_exp": { "_and": [ - 3325 + 3594 ], "_not": [ - 3325 + 3594 ], "_or": [ - 3325 + 3594 ], "demo_free_gpu_nodes": [ - 35 + 36 ], "demo_in_progress": [ 4 ], "demo_total_gpu_nodes": [ - 35 + 36 ], "free_gpu_nodes": [ - 35 + 36 ], "free_gpu_nodes_for_batch": [ - 35 + 36 ], "highlights_in_progress": [ 4 ], "id": [ - 35 + 36 ], "live_in_progress": [ 4 ], "registered_gpu_nodes": [ - 35 + 36 ], "rendering_total_gpu_nodes": [ - 35 + 36 ], "renders_paused_for_active_match": [ 4 ], "streaming_free_gpu_nodes": [ - 35 + 36 ], "streaming_total_gpu_nodes": [ - 35 + 36 ], "total_gpu_nodes": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_max_fields": { "demo_free_gpu_nodes": [ - 34 + 35 ], "demo_total_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes_for_batch": [ - 34 + 35 ], "id": [ - 34 + 35 ], "registered_gpu_nodes": [ - 34 + 35 ], "rendering_total_gpu_nodes": [ - 34 + 35 ], "streaming_free_gpu_nodes": [ - 34 + 35 ], "streaming_total_gpu_nodes": [ - 34 + 35 ], "total_gpu_nodes": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_min_fields": { "demo_free_gpu_nodes": [ - 34 + 35 ], "demo_total_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes_for_batch": [ - 34 + 35 ], "id": [ - 34 + 35 ], "registered_gpu_nodes": [ - 34 + 35 ], "rendering_total_gpu_nodes": [ - 34 + 35 ], "streaming_free_gpu_nodes": [ - 34 + 35 ], "streaming_total_gpu_nodes": [ - 34 + 35 ], "total_gpu_nodes": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_order_by": { "demo_free_gpu_nodes": [ - 1736 + 2005 ], "demo_in_progress": [ - 1736 + 2005 ], "demo_total_gpu_nodes": [ - 1736 + 2005 ], "free_gpu_nodes": [ - 1736 + 2005 ], "free_gpu_nodes_for_batch": [ - 1736 + 2005 ], "highlights_in_progress": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "live_in_progress": [ - 1736 + 2005 ], "registered_gpu_nodes": [ - 1736 + 2005 ], "rendering_total_gpu_nodes": [ - 1736 + 2005 ], "renders_paused_for_active_match": [ - 1736 + 2005 ], "streaming_free_gpu_nodes": [ - 1736 + 2005 ], "streaming_total_gpu_nodes": [ - 1736 + 2005 ], "total_gpu_nodes": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_select_column": {}, "v_gpu_pool_status_stddev_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_stddev_pop_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_stddev_samp_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_stream_cursor_input": { "initial_value": [ - 3334 + 3603 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_stream_cursor_value_input": { "demo_free_gpu_nodes": [ - 34 + 35 ], "demo_in_progress": [ 3 ], "demo_total_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes_for_batch": [ - 34 + 35 ], "highlights_in_progress": [ 3 ], "id": [ - 34 + 35 ], "live_in_progress": [ 3 ], "registered_gpu_nodes": [ - 34 + 35 ], "rendering_total_gpu_nodes": [ - 34 + 35 ], "renders_paused_for_active_match": [ 3 ], "streaming_free_gpu_nodes": [ - 34 + 35 ], "streaming_total_gpu_nodes": [ - 34 + 35 ], "total_gpu_nodes": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_sum_fields": { "demo_free_gpu_nodes": [ - 34 + 35 ], "demo_total_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes": [ - 34 + 35 ], "free_gpu_nodes_for_batch": [ - 34 + 35 ], "id": [ - 34 + 35 ], "registered_gpu_nodes": [ - 34 + 35 ], "rendering_total_gpu_nodes": [ - 34 + 35 ], "streaming_free_gpu_nodes": [ - 34 + 35 ], "streaming_total_gpu_nodes": [ - 34 + 35 ], "total_gpu_nodes": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_var_pop_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_var_samp_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_gpu_pool_status_variance_fields": { "demo_free_gpu_nodes": [ - 25 + 26 ], "demo_total_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes": [ - 25 + 26 ], "free_gpu_nodes_for_batch": [ - 25 + 26 ], "id": [ - 25 + 26 ], "registered_gpu_nodes": [ - 25 + 26 ], "rendering_total_gpu_nodes": [ - 25 + 26 ], "streaming_free_gpu_nodes": [ - 25 + 26 ], "streaming_total_gpu_nodes": [ - 25 + 26 ], "total_gpu_nodes": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains": { @@ -81803,50 +86757,50 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_aggregate": { "aggregate": [ - 3341 + 3610 ], "nodes": [ - 3339 + 3608 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_aggregate_fields": { "avg": [ - 3342 + 3611 ], "count": [ - 34, + 35, { "columns": [ - 3351, + 3620, "[v_match_captains_select_column!]" ], "distinct": [ @@ -81855,88 +86809,88 @@ export default { } ], "max": [ - 3346 + 3615 ], "min": [ - 3347 + 3616 ], "stddev": [ - 3353 + 3622 ], "stddev_pop": [ - 3354 + 3623 ], "stddev_samp": [ - 3355 + 3624 ], "sum": [ - 3358 + 3627 ], "var_pop": [ - 3360 + 3629 ], "var_samp": [ - 3361 + 3630 ], "variance": [ - 3362 + 3631 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_bool_exp": { "_and": [ - 3343 + 3612 ], "_not": [ - 3343 + 3612 ], "_or": [ - 3343 + 3612 ], "captain": [ 4 ], "discord_id": [ - 65 + 66 ], "id": [ - 3320 + 3589 ], "lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "placeholder_name": [ - 65 + 66 ], "player": [ - 2607 + 2876 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_inc_input": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_insert_input": { @@ -81944,116 +86898,116 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "player": [ - 2614 + 2883 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_max_fields": { "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_min_fields": { "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3339 + 3608 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_obj_rel_insert_input": { "data": [ - 3345 + 3614 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_order_by": { "captain": [ - 1736 + 2005 ], "discord_id": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "placeholder_name": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_select_column": {}, @@ -82062,57 +87016,57 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_stream_cursor_input": { "initial_value": [ - 3357 + 3626 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_stream_cursor_value_input": { @@ -82120,159 +87074,159 @@ export default { 3 ], "discord_id": [ - 63 + 64 ], "id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "placeholder_name": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_updates": { "_inc": [ - 3344 + 3613 ], "_set": [ - 3352 + 3621 ], "where": [ - 3343 + 3612 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_captains_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches": { "against_count": [ - 34 + 35 ], "clutcher": [ - 2603 + 2872 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "outcome": [ - 63 + 64 ], "round": [ - 34 + 35 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_aggregate": { "aggregate": [ - 3367 + 3636 ], "nodes": [ - 3363 + 3632 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_aggregate_bool_exp": { "count": [ - 3366 + 3635 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_aggregate_bool_exp_count": { "arguments": [ - 3379 + 3648 ], "distinct": [ 3 ], "filter": [ - 3372 + 3641 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_aggregate_fields": { "avg": [ - 3370 + 3639 ], "count": [ - 34, + 35, { "columns": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "distinct": [ @@ -82281,722 +87235,722 @@ export default { } ], "max": [ - 3374 + 3643 ], "min": [ - 3376 + 3645 ], "stddev": [ - 3380 + 3649 ], "stddev_pop": [ - 3382 + 3651 ], "stddev_samp": [ - 3384 + 3653 ], "sum": [ - 3388 + 3657 ], "var_pop": [ - 3390 + 3659 ], "var_samp": [ - 3392 + 3661 ], "variance": [ - 3394 + 3663 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_aggregate_order_by": { "avg": [ - 3371 + 3640 ], "count": [ - 1736 + 2005 ], "max": [ - 3375 + 3644 ], "min": [ - 3377 + 3646 ], "stddev": [ - 3381 + 3650 ], "stddev_pop": [ - 3383 + 3652 ], "stddev_samp": [ - 3385 + 3654 ], "sum": [ - 3389 + 3658 ], "var_pop": [ - 3391 + 3660 ], "var_samp": [ - 3393 + 3662 ], "variance": [ - 3395 + 3664 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_arr_rel_insert_input": { "data": [ - 3373 + 3642 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_avg_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_avg_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_bool_exp": { "_and": [ - 3372 + 3641 ], "_not": [ - 3372 + 3641 ], "_or": [ - 3372 + 3641 ], "against_count": [ - 35 + 36 ], "clutcher": [ - 2607 + 2876 ], "clutcher_steam_id": [ - 163 + 164 ], "kills_in_clutch": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "outcome": [ - 65 + 66 ], "round": [ - 35 + 36 ], "side": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_insert_input": { "against_count": [ - 34 + 35 ], "clutcher": [ - 2614 + 2883 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "outcome": [ - 63 + 64 ], "round": [ - 34 + 35 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_max_fields": { "against_count": [ - 34 + 35 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "outcome": [ - 63 + 64 ], "round": [ - 34 + 35 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_max_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "outcome": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_min_fields": { "against_count": [ - 34 + 35 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "outcome": [ - 63 + 64 ], "round": [ - 34 + 35 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_min_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "outcome": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher": [ - 2616 + 2885 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "outcome": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_select_column": {}, "v_match_clutches_stddev_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stddev_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stddev_pop_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stddev_pop_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stddev_samp_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stddev_samp_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stream_cursor_input": { "initial_value": [ - 3387 + 3656 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_stream_cursor_value_input": { "against_count": [ - 34 + 35 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "outcome": [ - 63 + 64 ], "round": [ - 34 + 35 ], "side": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_sum_fields": { "against_count": [ - 34 + 35 ], "clutcher_steam_id": [ - 162 + 163 ], "kills_in_clutch": [ - 34 + 35 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_sum_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_var_pop_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_var_pop_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_var_samp_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_var_samp_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_variance_fields": { "against_count": [ - 25 + 26 ], "clutcher_steam_id": [ - 25 + 26 ], "kills_in_clutch": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_clutches_variance_order_by": { "against_count": [ - 1736 + 2005 ], "clutcher_steam_id": [ - 1736 + 2005 ], "kills_in_clutch": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs": { "killer_side": [ - 63 + 64 ], "killer_steam_id": [ - 162 + 163 ], "kills": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "victim_side": [ - 63 + 64 ], "victim_steam_id": [ - 162 + 163 ], "weapon": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_aggregate": { "aggregate": [ - 3398 + 3667 ], "nodes": [ - 3396 + 3665 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_aggregate_fields": { "avg": [ - 3399 + 3668 ], "count": [ - 34, + 35, { "columns": [ - 3404, + 3673, "[v_match_kill_pairs_select_column!]" ], "distinct": [ @@ -83005,381 +87959,381 @@ export default { } ], "max": [ - 3401 + 3670 ], "min": [ - 3402 + 3671 ], "stddev": [ - 3405 + 3674 ], "stddev_pop": [ - 3406 + 3675 ], "stddev_samp": [ - 3407 + 3676 ], "sum": [ - 3410 + 3679 ], "var_pop": [ - 3411 + 3680 ], "var_samp": [ - 3412 + 3681 ], "variance": [ - 3413 + 3682 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_avg_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_bool_exp": { "_and": [ - 3400 + 3669 ], "_not": [ - 3400 + 3669 ], "_or": [ - 3400 + 3669 ], "killer_side": [ - 65 + 66 ], "killer_steam_id": [ - 163 + 164 ], "kills": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "victim_side": [ - 65 + 66 ], "victim_steam_id": [ - 163 + 164 ], "weapon": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_max_fields": { "killer_side": [ - 63 + 64 ], "killer_steam_id": [ - 162 + 163 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "victim_side": [ - 63 + 64 ], "victim_steam_id": [ - 162 + 163 ], "weapon": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_min_fields": { "killer_side": [ - 63 + 64 ], "killer_steam_id": [ - 162 + 163 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "victim_side": [ - 63 + 64 ], "victim_steam_id": [ - 162 + 163 ], "weapon": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_order_by": { "killer_side": [ - 1736 + 2005 ], "killer_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "victim_side": [ - 1736 + 2005 ], "victim_steam_id": [ - 1736 + 2005 ], "weapon": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_select_column": {}, "v_match_kill_pairs_stddev_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_stddev_pop_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_stddev_samp_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_stream_cursor_input": { "initial_value": [ - 3409 + 3678 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_stream_cursor_value_input": { "killer_side": [ - 63 + 64 ], "killer_steam_id": [ - 162 + 163 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "victim_side": [ - 63 + 64 ], "victim_steam_id": [ - 162 + 163 ], "weapon": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_sum_fields": { "killer_steam_id": [ - 162 + 163 ], "kills": [ - 34 + 35 ], "victim_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_var_pop_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_var_samp_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_kill_pairs_variance_fields": { "killer_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "victim_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types": { "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_aggregate": { "aggregate": [ - 3416 + 3685 ], "nodes": [ - 3414 + 3683 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_aggregate_fields": { "avg": [ - 3417 + 3686 ], "count": [ - 34, + 35, { "columns": [ - 3422, + 3691, "[v_match_lineup_buy_types_select_column!]" ], "distinct": [ @@ -83388,381 +88342,381 @@ export default { } ], "max": [ - 3419 + 3688 ], "min": [ - 3420 + 3689 ], "stddev": [ - 3423 + 3692 ], "stddev_pop": [ - 3424 + 3693 ], "stddev_samp": [ - 3425 + 3694 ], "sum": [ - 3428 + 3697 ], "var_pop": [ - 3429 + 3698 ], "var_samp": [ - 3430 + 3699 ], "variance": [ - 3431 + 3700 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_avg_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_bool_exp": { "_and": [ - 3418 + 3687 ], "_not": [ - 3418 + 3687 ], "_or": [ - 3418 + 3687 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "matchup": [ - 65 + 66 ], "rounds": [ - 35 + 36 ], "side": [ - 65 + 66 ], "wins": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_max_fields": { "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_min_fields": { "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_order_by": { "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "matchup": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_select_column": {}, "v_match_lineup_buy_types_stddev_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_stddev_pop_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_stddev_samp_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_stream_cursor_input": { "initial_value": [ - 3427 + 3696 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_stream_cursor_value_input": { "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_sum_fields": { "rounds": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_var_pop_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_var_samp_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_buy_types_variance_fields": { "rounds": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats": { "man_adv_rounds": [ - 34 + 35 ], "man_adv_wins": [ - 34 + 35 ], "man_dis_rounds": [ - 34 + 35 ], "man_dis_wins": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "opening_attempts": [ - 34 + 35 ], "opening_wins": [ - 34 + 35 ], "pistol_rounds": [ - 34 + 35 ], "pistol_wins": [ - 34 + 35 ], "round_wins": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "won_buy_eco": [ - 34 + 35 ], "won_buy_force": [ - 34 + 35 ], "won_buy_full": [ - 34 + 35 ], "won_buy_pistol": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_aggregate": { "aggregate": [ - 3434 + 3703 ], "nodes": [ - 3432 + 3701 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_aggregate_fields": { "avg": [ - 3435 + 3704 ], "count": [ - 34, + 35, { "columns": [ - 3440, + 3709, "[v_match_lineup_map_stats_select_column!]" ], "distinct": [ @@ -83771,744 +88725,744 @@ export default { } ], "max": [ - 3437 + 3706 ], "min": [ - 3438 + 3707 ], "stddev": [ - 3441 + 3710 ], "stddev_pop": [ - 3442 + 3711 ], "stddev_samp": [ - 3443 + 3712 ], "sum": [ - 3446 + 3715 ], "var_pop": [ - 3447 + 3716 ], "var_samp": [ - 3448 + 3717 ], "variance": [ - 3449 + 3718 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_avg_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_bool_exp": { "_and": [ - 3436 + 3705 ], "_not": [ - 3436 + 3705 ], "_or": [ - 3436 + 3705 ], "man_adv_rounds": [ - 35 + 36 ], "man_adv_wins": [ - 35 + 36 ], "man_dis_rounds": [ - 35 + 36 ], "man_dis_wins": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "opening_attempts": [ - 35 + 36 ], "opening_wins": [ - 35 + 36 ], "pistol_rounds": [ - 35 + 36 ], "pistol_wins": [ - 35 + 36 ], "round_wins": [ - 35 + 36 ], "rounds": [ - 35 + 36 ], "side": [ - 65 + 66 ], "won_buy_eco": [ - 35 + 36 ], "won_buy_force": [ - 35 + 36 ], "won_buy_full": [ - 35 + 36 ], "won_buy_pistol": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_max_fields": { "man_adv_rounds": [ - 34 + 35 ], "man_adv_wins": [ - 34 + 35 ], "man_dis_rounds": [ - 34 + 35 ], "man_dis_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "opening_attempts": [ - 34 + 35 ], "opening_wins": [ - 34 + 35 ], "pistol_rounds": [ - 34 + 35 ], "pistol_wins": [ - 34 + 35 ], "round_wins": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "won_buy_eco": [ - 34 + 35 ], "won_buy_force": [ - 34 + 35 ], "won_buy_full": [ - 34 + 35 ], "won_buy_pistol": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_min_fields": { "man_adv_rounds": [ - 34 + 35 ], "man_adv_wins": [ - 34 + 35 ], "man_dis_rounds": [ - 34 + 35 ], "man_dis_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "opening_attempts": [ - 34 + 35 ], "opening_wins": [ - 34 + 35 ], "pistol_rounds": [ - 34 + 35 ], "pistol_wins": [ - 34 + 35 ], "round_wins": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "won_buy_eco": [ - 34 + 35 ], "won_buy_force": [ - 34 + 35 ], "won_buy_full": [ - 34 + 35 ], "won_buy_pistol": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_order_by": { "man_adv_rounds": [ - 1736 + 2005 ], "man_adv_wins": [ - 1736 + 2005 ], "man_dis_rounds": [ - 1736 + 2005 ], "man_dis_wins": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "opening_attempts": [ - 1736 + 2005 ], "opening_wins": [ - 1736 + 2005 ], "pistol_rounds": [ - 1736 + 2005 ], "pistol_wins": [ - 1736 + 2005 ], "round_wins": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "won_buy_eco": [ - 1736 + 2005 ], "won_buy_force": [ - 1736 + 2005 ], "won_buy_full": [ - 1736 + 2005 ], "won_buy_pistol": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_select_column": {}, "v_match_lineup_map_stats_stddev_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_stddev_pop_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_stddev_samp_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_stream_cursor_input": { "initial_value": [ - 3445 + 3714 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_stream_cursor_value_input": { "man_adv_rounds": [ - 34 + 35 ], "man_adv_wins": [ - 34 + 35 ], "man_dis_rounds": [ - 34 + 35 ], "man_dis_wins": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "opening_attempts": [ - 34 + 35 ], "opening_wins": [ - 34 + 35 ], "pistol_rounds": [ - 34 + 35 ], "pistol_wins": [ - 34 + 35 ], "round_wins": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "won_buy_eco": [ - 34 + 35 ], "won_buy_force": [ - 34 + 35 ], "won_buy_full": [ - 34 + 35 ], "won_buy_pistol": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_sum_fields": { "man_adv_rounds": [ - 34 + 35 ], "man_adv_wins": [ - 34 + 35 ], "man_dis_rounds": [ - 34 + 35 ], "man_dis_wins": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "opening_wins": [ - 34 + 35 ], "pistol_rounds": [ - 34 + 35 ], "pistol_wins": [ - 34 + 35 ], "round_wins": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "won_buy_eco": [ - 34 + 35 ], "won_buy_force": [ - 34 + 35 ], "won_buy_full": [ - 34 + 35 ], "won_buy_pistol": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_var_pop_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_var_samp_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_lineup_map_stats_variance_fields": { "man_adv_rounds": [ - 25 + 26 ], "man_adv_wins": [ - 25 + 26 ], "man_dis_rounds": [ - 25 + 26 ], "man_dis_wins": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "opening_wins": [ - 25 + 26 ], "pistol_rounds": [ - 25 + 26 ], "pistol_wins": [ - 25 + 26 ], "round_wins": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "won_buy_eco": [ - 25 + 26 ], "won_buy_force": [ - 25 + 26 ], "won_buy_full": [ - 25 + 26 ], "won_buy_pistol": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds": { @@ -84516,35 +89470,35 @@ export default { 3 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_aggregate": { "aggregate": [ - 3452 + 3721 ], "nodes": [ - 3450 + 3719 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_aggregate_fields": { "avg": [ - 3453 + 3722 ], "count": [ - 34, + 35, { "columns": [ - 3461, + 3730, "[v_match_map_backup_rounds_select_column!]" ], "distinct": [ @@ -84553,73 +89507,73 @@ export default { } ], "max": [ - 3457 + 3726 ], "min": [ - 3458 + 3727 ], "stddev": [ - 3463 + 3732 ], "stddev_pop": [ - 3464 + 3733 ], "stddev_samp": [ - 3465 + 3734 ], "sum": [ - 3468 + 3737 ], "var_pop": [ - 3470 + 3739 ], "var_samp": [ - 3471 + 3740 ], "variance": [ - 3472 + 3741 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_avg_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_bool_exp": { "_and": [ - 3454 + 3723 ], "_not": [ - 3454 + 3723 ], "_or": [ - 3454 + 3723 ], "has_backup_file": [ 4 ], "match_map_id": [ - 3320 + 3589 ], "round": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_inc_input": { "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_insert_input": { @@ -84627,60 +89581,60 @@ export default { 3 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_max_fields": { "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_min_fields": { "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3450 + 3719 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_order_by": { "has_backup_file": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_select_column": {}, @@ -84689,48 +89643,48 @@ export default { 3 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_stddev_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_stddev_pop_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_stddev_samp_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_stream_cursor_input": { "initial_value": [ - 3467 + 3736 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_stream_cursor_value_input": { @@ -84738,125 +89692,125 @@ export default { 3 ], "match_map_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_sum_fields": { "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_updates": { "_inc": [ - 3455 + 3724 ], "_set": [ - 3462 + 3731 ], "where": [ - 3454 + 3723 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_var_pop_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_var_samp_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_map_backup_rounds_variance_fields": { "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types": { "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "player": [ - 2603 + 2872 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_aggregate": { "aggregate": [ - 3475 + 3744 ], "nodes": [ - 3473 + 3742 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_aggregate_fields": { "avg": [ - 3476 + 3745 ], "count": [ - 34, + 35, { "columns": [ - 3481, + 3750, "[v_match_player_buy_types_select_column!]" ], "distinct": [ @@ -84865,466 +89819,466 @@ export default { } ], "max": [ - 3478 + 3747 ], "min": [ - 3479 + 3748 ], "stddev": [ - 3482 + 3751 ], "stddev_pop": [ - 3483 + 3752 ], "stddev_samp": [ - 3484 + 3753 ], "sum": [ - 3487 + 3756 ], "var_pop": [ - 3488 + 3757 ], "var_samp": [ - 3489 + 3758 ], "variance": [ - 3490 + 3759 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_avg_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_bool_exp": { "_and": [ - 3477 + 3746 ], "_not": [ - 3477 + 3746 ], "_or": [ - 3477 + 3746 ], "deaths": [ - 35 + 36 ], "kills": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "matchup": [ - 65 + 66 ], "player": [ - 2607 + 2876 ], "rounds": [ - 35 + 36 ], "side": [ - 65 + 66 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_max_fields": { "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_min_fields": { "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_order_by": { "deaths": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "matchup": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "rounds": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_select_column": {}, "v_match_player_buy_types_stddev_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_stddev_pop_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_stddev_samp_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_stream_cursor_input": { "initial_value": [ - 3486 + 3755 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_stream_cursor_value_input": { "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "matchup": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_sum_fields": { "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_var_pop_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_var_samp_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_buy_types_variance_fields": { "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1258 + 1500 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_aggregate": { "aggregate": [ - 3495 + 3764 ], "nodes": [ - 3491 + 3760 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_aggregate_bool_exp": { "count": [ - 3494 + 3763 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_aggregate_bool_exp_count": { "arguments": [ - 3507 + 3776 ], "distinct": [ 3 ], "filter": [ - 3500 + 3769 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_aggregate_fields": { "avg": [ - 3498 + 3767 ], "count": [ - 34, + 35, { "columns": [ - 3507, + 3776, "[v_match_player_opening_duels_select_column!]" ], "distinct": [ @@ -85333,755 +90287,755 @@ export default { } ], "max": [ - 3502 + 3771 ], "min": [ - 3504 + 3773 ], "stddev": [ - 3508 + 3777 ], "stddev_pop": [ - 3510 + 3779 ], "stddev_samp": [ - 3512 + 3781 ], "sum": [ - 3516 + 3785 ], "var_pop": [ - 3518 + 3787 ], "var_samp": [ - 3520 + 3789 ], "variance": [ - 3522 + 3791 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_aggregate_order_by": { "avg": [ - 3499 + 3768 ], "count": [ - 1736 + 2005 ], "max": [ - 3503 + 3772 ], "min": [ - 3505 + 3774 ], "stddev": [ - 3509 + 3778 ], "stddev_pop": [ - 3511 + 3780 ], "stddev_samp": [ - 3513 + 3782 ], "sum": [ - 3517 + 3786 ], "var_pop": [ - 3519 + 3788 ], "var_samp": [ - 3521 + 3790 ], "variance": [ - 3523 + 3792 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_arr_rel_insert_input": { "data": [ - 3501 + 3770 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_avg_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_avg_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_bool_exp": { "_and": [ - 3500 + 3769 ], "_not": [ - 3500 + 3769 ], "_or": [ - 3500 + 3769 ], "attempts": [ - 35 + 36 ], "deaths": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_lineup": [ - 1267 + 1509 ], "match_lineup_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "side": [ - 65 + 66 ], "steam_id": [ - 163 + 164 ], "traded_deaths": [ - 35 + 36 ], "wins": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_insert_input": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_lineup": [ - 1276 + 1518 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_max_fields": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_max_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_min_fields": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_min_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "side": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_lineup": [ - 1278 + 1520 ], "match_lineup_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "side": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_select_column": {}, "v_match_player_opening_duels_stddev_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stddev_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stddev_pop_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stddev_pop_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stddev_samp_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stddev_samp_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stream_cursor_input": { "initial_value": [ - 3515 + 3784 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_stream_cursor_value_input": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "match_id": [ - 3319 + 3588 ], "match_lineup_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "side": [ - 63 + 64 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_sum_fields": { "attempts": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "traded_deaths": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_sum_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_var_pop_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_var_pop_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_var_samp_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_var_samp_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_variance_fields": { "attempts": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "traded_deaths": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_match_player_opening_duels_variance_order_by": { "attempts": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "traded_deaths": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis": { "attacker_id": [ - 162 + 163 ], "kill_count": [ - 162 + 163 ], "nemsis": [ - 2603 + 2872 ], "player": [ - 2603 + 2872 ], "victim_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_aggregate": { "aggregate": [ - 3526 + 3795 ], "nodes": [ - 3524 + 3793 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_aggregate_fields": { "avg": [ - 3527 + 3796 ], "count": [ - 34, + 35, { "columns": [ - 3532, + 3801, "[v_player_arch_nemesis_select_column!]" ], "distinct": [ @@ -86090,291 +91044,291 @@ export default { } ], "max": [ - 3529 + 3798 ], "min": [ - 3530 + 3799 ], "stddev": [ - 3533 + 3802 ], "stddev_pop": [ - 3534 + 3803 ], "stddev_samp": [ - 3535 + 3804 ], "sum": [ - 3538 + 3807 ], "var_pop": [ - 3539 + 3808 ], "var_samp": [ - 3540 + 3809 ], "variance": [ - 3541 + 3810 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_avg_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_bool_exp": { "_and": [ - 3528 + 3797 ], "_not": [ - 3528 + 3797 ], "_or": [ - 3528 + 3797 ], "attacker_id": [ - 163 + 164 ], "kill_count": [ - 163 + 164 ], "nemsis": [ - 2607 + 2876 ], "player": [ - 2607 + 2876 ], "victim_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_max_fields": { "attacker_id": [ - 162 + 163 ], "kill_count": [ - 162 + 163 ], "victim_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_min_fields": { "attacker_id": [ - 162 + 163 ], "kill_count": [ - 162 + 163 ], "victim_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_order_by": { "attacker_id": [ - 1736 + 2005 ], "kill_count": [ - 1736 + 2005 ], "nemsis": [ - 2616 + 2885 ], "player": [ - 2616 + 2885 ], "victim_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_select_column": {}, "v_player_arch_nemesis_stddev_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_stddev_pop_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_stddev_samp_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_stream_cursor_input": { "initial_value": [ - 3537 + 3806 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_stream_cursor_value_input": { "attacker_id": [ - 162 + 163 ], "kill_count": [ - 162 + 163 ], "victim_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_sum_fields": { "attacker_id": [ - 162 + 163 ], "kill_count": [ - 162 + 163 ], "victim_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_var_pop_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_var_samp_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_arch_nemesis_variance_fields": { "attacker_id": [ - 25 + 26 ], "kill_count": [ - 25 + 26 ], "victim_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage": { "avg_damage_per_round": [ - 162 + 163 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "total_damage": [ - 162 + 163 ], "total_rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_aggregate": { "aggregate": [ - 3544 + 3813 ], "nodes": [ - 3542 + 3811 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_aggregate_fields": { "avg": [ - 3545 + 3814 ], "count": [ - 34, + 35, { "columns": [ - 3550, + 3819, "[v_player_damage_select_column!]" ], "distinct": [ @@ -86383,597 +91337,597 @@ export default { } ], "max": [ - 3547 + 3816 ], "min": [ - 3548 + 3817 ], "stddev": [ - 3551 + 3820 ], "stddev_pop": [ - 3552 + 3821 ], "stddev_samp": [ - 3553 + 3822 ], "sum": [ - 3556 + 3825 ], "var_pop": [ - 3557 + 3826 ], "var_samp": [ - 3558 + 3827 ], "variance": [ - 3559 + 3828 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_avg_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_bool_exp": { "_and": [ - 3546 + 3815 ], "_not": [ - 3546 + 3815 ], "_or": [ - 3546 + 3815 ], "avg_damage_per_round": [ - 163 + 164 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "total_damage": [ - 163 + 164 ], "total_rounds": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_max_fields": { "avg_damage_per_round": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "total_damage": [ - 162 + 163 ], "total_rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_min_fields": { "avg_damage_per_round": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "total_damage": [ - 162 + 163 ], "total_rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_order_by": { "avg_damage_per_round": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "total_damage": [ - 1736 + 2005 ], "total_rounds": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_select_column": {}, "v_player_damage_stddev_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_stddev_pop_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_stddev_samp_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_stream_cursor_input": { "initial_value": [ - 3555 + 3824 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_stream_cursor_value_input": { "avg_damage_per_round": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "total_damage": [ - 162 + 163 ], "total_rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_sum_fields": { "avg_damage_per_round": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "total_damage": [ - 162 + 163 ], "total_rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_var_pop_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_var_samp_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_damage_variance_fields": { "avg_damage_per_round": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "total_damage": [ - 25 + 26 ], "total_rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match": [ - 1578 + 1820 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 63 + 64 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate": { "aggregate": [ - 3574 + 3843 ], "nodes": [ - 3560 + 3829 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp": { "avg": [ - 3563 + 3832 ], "corr": [ - 3564 + 3833 ], "count": [ - 3566 + 3835 ], "covar_samp": [ - 3567 + 3836 ], "max": [ - 3569 + 3838 ], "min": [ - 3570 + 3839 ], "stddev_samp": [ - 3571 + 3840 ], "sum": [ - 3572 + 3841 ], "var_samp": [ - 3573 + 3842 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_avg": { "arguments": [ - 3587 + 3856 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_corr": { "arguments": [ - 3565 + 3834 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_corr_arguments": { "X": [ - 3588 + 3857 ], "Y": [ - 3588 + 3857 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_count": { "arguments": [ - 3586 + 3855 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_covar_samp": { "arguments": [ - 3568 + 3837 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3589 + 3858 ], "Y": [ - 3589 + 3858 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_max": { "arguments": [ - 3590 + 3859 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_min": { "arguments": [ - 3591 + 3860 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3592 + 3861 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_sum": { "arguments": [ - 3593 + 3862 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_bool_exp_var_samp": { "arguments": [ - 3594 + 3863 ], "distinct": [ 3 ], "filter": [ - 3579 + 3848 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_fields": { "avg": [ - 3577 + 3846 ], "count": [ - 34, + 35, { "columns": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "distinct": [ @@ -86982,815 +91936,815 @@ export default { } ], "max": [ - 3581 + 3850 ], "min": [ - 3583 + 3852 ], "stddev": [ - 3595 + 3864 ], "stddev_pop": [ - 3597 + 3866 ], "stddev_samp": [ - 3599 + 3868 ], "sum": [ - 3603 + 3872 ], "var_pop": [ - 3605 + 3874 ], "var_samp": [ - 3607 + 3876 ], "variance": [ - 3609 + 3878 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_aggregate_order_by": { "avg": [ - 3578 + 3847 ], "count": [ - 1736 + 2005 ], "max": [ - 3582 + 3851 ], "min": [ - 3584 + 3853 ], "stddev": [ - 3596 + 3865 ], "stddev_pop": [ - 3598 + 3867 ], "stddev_samp": [ - 3600 + 3869 ], "sum": [ - 3604 + 3873 ], "var_pop": [ - 3606 + 3875 ], "var_samp": [ - 3608 + 3877 ], "variance": [ - 3610 + 3879 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_arr_rel_insert_input": { "data": [ - 3580 + 3849 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_avg_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_avg_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_bool_exp": { "_and": [ - 3579 + 3848 ], "_not": [ - 3579 + 3848 ], "_or": [ - 3579 + 3848 ], "actual_score": [ - 796 + 1038 ], "assists": [ - 35 + 36 ], "current_elo": [ - 35 + 36 ], "damage": [ - 35 + 36 ], "damage_percent": [ - 796 + 1038 ], "deaths": [ - 35 + 36 ], "elo_change": [ - 35 + 36 ], "expected_score": [ - 796 + 1038 ], "impact": [ - 796 + 1038 ], "k_factor": [ - 35 + 36 ], "kda": [ - 796 + 1038 ], "kills": [ - 35 + 36 ], "map_losses": [ - 35 + 36 ], "map_wins": [ - 35 + 36 ], "match": [ - 1587 + 1829 ], "match_created_at": [ - 2923 + 3192 ], "match_id": [ - 3320 + 3589 ], "match_result": [ - 65 + 66 ], "opponent_team_elo_avg": [ - 796 + 1038 ], "performance_multiplier": [ - 796 + 1038 ], "player_name": [ - 65 + 66 ], "player_steam_id": [ - 163 + 164 ], "player_team_elo_avg": [ - 796 + 1038 ], "series_multiplier": [ - 35 + 36 ], "team_avg_kda": [ - 796 + 1038 ], "type": [ - 65 + 66 ], "updated_elo": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_insert_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match": [ - 1596 + 1838 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 63 + 64 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_max_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 63 + 64 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_max_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "match_created_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_result": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_name": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_min_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 63 + 64 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_min_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "match_created_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_result": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_name": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_created_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_result": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_name": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_select_column": {}, @@ -87804,1093 +92758,1093 @@ export default { "v_player_elo_select_column_v_player_elo_aggregate_bool_exp_var_samp_arguments_columns": {}, "v_player_elo_stddev_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stddev_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stddev_pop_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stddev_pop_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stddev_samp_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stddev_samp_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stream_cursor_input": { "initial_value": [ - 3602 + 3871 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_stream_cursor_value_input": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_name": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "type": [ - 63 + 64 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_sum_fields": { "actual_score": [ - 795 + 1037 ], "assists": [ - 34 + 35 ], "current_elo": [ - 34 + 35 ], "damage": [ - 34 + 35 ], "damage_percent": [ - 795 + 1037 ], "deaths": [ - 34 + 35 ], "elo_change": [ - 34 + 35 ], "expected_score": [ - 795 + 1037 ], "impact": [ - 795 + 1037 ], "k_factor": [ - 34 + 35 ], "kda": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "map_losses": [ - 34 + 35 ], "map_wins": [ - 34 + 35 ], "opponent_team_elo_avg": [ - 795 + 1037 ], "performance_multiplier": [ - 795 + 1037 ], "player_steam_id": [ - 162 + 163 ], "player_team_elo_avg": [ - 795 + 1037 ], "series_multiplier": [ - 34 + 35 ], "team_avg_kda": [ - 795 + 1037 ], "updated_elo": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_sum_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_var_pop_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_var_pop_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_var_samp_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_var_samp_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_variance_fields": { "actual_score": [ - 25 + 26 ], "assists": [ - 25 + 26 ], "current_elo": [ - 25 + 26 ], "damage": [ - 25 + 26 ], "damage_percent": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "elo_change": [ - 25 + 26 ], "expected_score": [ - 25 + 26 ], "impact": [ - 25 + 26 ], "k_factor": [ - 25 + 26 ], "kda": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "map_losses": [ - 25 + 26 ], "map_wins": [ - 25 + 26 ], "opponent_team_elo_avg": [ - 25 + 26 ], "performance_multiplier": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "player_team_elo_avg": [ - 25 + 26 ], "series_multiplier": [ - 25 + 26 ], "team_avg_kda": [ - 25 + 26 ], "updated_elo": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_elo_variance_order_by": { "actual_score": [ - 1736 + 2005 ], "assists": [ - 1736 + 2005 ], "current_elo": [ - 1736 + 2005 ], "damage": [ - 1736 + 2005 ], "damage_percent": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "elo_change": [ - 1736 + 2005 ], "expected_score": [ - 1736 + 2005 ], "impact": [ - 1736 + 2005 ], "k_factor": [ - 1736 + 2005 ], "kda": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map_losses": [ - 1736 + 2005 ], "map_wins": [ - 1736 + 2005 ], "opponent_team_elo_avg": [ - 1736 + 2005 ], "performance_multiplier": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "player_team_elo_avg": [ - 1736 + 2005 ], "series_multiplier": [ - 1736 + 2005 ], "team_avg_kda": [ - 1736 + 2005 ], "updated_elo": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses": { "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_aggregate": { "aggregate": [ - 3613 + 3882 ], "nodes": [ - 3611 + 3880 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_aggregate_fields": { "avg": [ - 3614 + 3883 ], "count": [ - 34, + 35, { "columns": [ - 3619, + 3888, "[v_player_map_losses_select_column!]" ], "distinct": [ @@ -88899,261 +93853,261 @@ export default { } ], "max": [ - 3616 + 3885 ], "min": [ - 3617 + 3886 ], "stddev": [ - 3620 + 3889 ], "stddev_pop": [ - 3621 + 3890 ], "stddev_samp": [ - 3622 + 3891 ], "sum": [ - 3625 + 3894 ], "var_pop": [ - 3626 + 3895 ], "var_samp": [ - 3627 + 3896 ], "variance": [ - 3628 + 3897 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_bool_exp": { "_and": [ - 3615 + 3884 ], "_not": [ - 3615 + 3884 ], "_or": [ - 3615 + 3884 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "started_at": [ - 2923 + 3192 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_max_fields": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_min_fields": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_order_by": { "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "started_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_select_column": {}, "v_player_map_losses_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_stream_cursor_input": { "initial_value": [ - 3624 + 3893 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_stream_cursor_value_input": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_losses_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins": { "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_aggregate": { "aggregate": [ - 3631 + 3900 ], "nodes": [ - 3629 + 3898 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_aggregate_fields": { "avg": [ - 3632 + 3901 ], "count": [ - 34, + 35, { "columns": [ - 3637, + 3906, "[v_player_map_wins_select_column!]" ], "distinct": [ @@ -89162,276 +94116,276 @@ export default { } ], "max": [ - 3634 + 3903 ], "min": [ - 3635 + 3904 ], "stddev": [ - 3638 + 3907 ], "stddev_pop": [ - 3639 + 3908 ], "stddev_samp": [ - 3640 + 3909 ], "sum": [ - 3643 + 3912 ], "var_pop": [ - 3644 + 3913 ], "var_samp": [ - 3645 + 3914 ], "variance": [ - 3646 + 3915 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_avg_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_bool_exp": { "_and": [ - 3633 + 3902 ], "_not": [ - 3633 + 3902 ], "_or": [ - 3633 + 3902 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "started_at": [ - 2923 + 3192 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_max_fields": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_min_fields": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_order_by": { "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "started_at": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_select_column": {}, "v_player_map_wins_stddev_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_stddev_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_stddev_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_stream_cursor_input": { "initial_value": [ - 3642 + 3911 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_stream_cursor_value_input": { "map_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "started_at": [ - 2922 + 3191 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_sum_fields": { "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_var_pop_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_var_samp_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_map_wins_variance_fields": { "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head": { "attacked": [ - 2603 + 2872 ], "attacked_steam_id": [ - 162 + 163 ], "attacker": [ - 2603 + 2872 ], "attacker_steam_id": [ - 162 + 163 ], "damage_dealt": [ - 34 + 35 ], "flash_count": [ - 162 + 163 ], "headshot_kills": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_aggregate": { "aggregate": [ - 3649 + 3918 ], "nodes": [ - 3647 + 3916 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_aggregate_fields": { "avg": [ - 3650 + 3919 ], "count": [ - 34, + 35, { "columns": [ - 3655, + 3924, "[v_player_match_head_to_head_select_column!]" ], "distinct": [ @@ -89440,517 +94394,517 @@ export default { } ], "max": [ - 3652 + 3921 ], "min": [ - 3653 + 3922 ], "stddev": [ - 3656 + 3925 ], "stddev_pop": [ - 3657 + 3926 ], "stddev_samp": [ - 3658 + 3927 ], "sum": [ - 3661 + 3930 ], "var_pop": [ - 3662 + 3931 ], "var_samp": [ - 3663 + 3932 ], "variance": [ - 3664 + 3933 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_avg_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_bool_exp": { "_and": [ - 3651 + 3920 ], "_not": [ - 3651 + 3920 ], "_or": [ - 3651 + 3920 ], "attacked": [ - 2607 + 2876 ], "attacked_steam_id": [ - 163 + 164 ], "attacker": [ - 2607 + 2876 ], "attacker_steam_id": [ - 163 + 164 ], "damage_dealt": [ - 35 + 36 ], "flash_count": [ - 163 + 164 ], "headshot_kills": [ - 163 + 164 ], "hits": [ - 163 + 164 ], "kills": [ - 163 + 164 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_max_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage_dealt": [ - 34 + 35 ], "flash_count": [ - 162 + 163 ], "headshot_kills": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_min_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage_dealt": [ - 34 + 35 ], "flash_count": [ - 162 + 163 ], "headshot_kills": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_order_by": { "attacked": [ - 2616 + 2885 ], "attacked_steam_id": [ - 1736 + 2005 ], "attacker": [ - 2616 + 2885 ], "attacker_steam_id": [ - 1736 + 2005 ], "damage_dealt": [ - 1736 + 2005 ], "flash_count": [ - 1736 + 2005 ], "headshot_kills": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_select_column": {}, "v_player_match_head_to_head_stddev_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_stddev_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_stddev_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_stream_cursor_input": { "initial_value": [ - 3660 + 3929 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_stream_cursor_value_input": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage_dealt": [ - 34 + 35 ], "flash_count": [ - 162 + 163 ], "headshot_kills": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_sum_fields": { "attacked_steam_id": [ - 162 + 163 ], "attacker_steam_id": [ - 162 + 163 ], "damage_dealt": [ - 34 + 35 ], "flash_count": [ - 162 + 163 ], "headshot_kills": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_var_pop_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_var_samp_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_head_to_head_variance_fields": { "attacked_steam_id": [ - 25 + 26 ], "attacker_steam_id": [ - 25 + 26 ], "damage_dealt": [ - 25 + 26 ], "flash_count": [ - 25 + 26 ], "headshot_kills": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_aggregate": { "aggregate": [ - 3669 + 3938 ], "nodes": [ - 3665 + 3934 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_aggregate_bool_exp": { "count": [ - 3668 + 3937 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_aggregate_bool_exp_count": { "arguments": [ - 3683 + 3952 ], "distinct": [ 3 ], "filter": [ - 3674 + 3943 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_aggregate_fields": { "avg": [ - 3672 + 3941 ], "count": [ - 34, + 35, { "columns": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "distinct": [ @@ -89959,1072 +94913,1072 @@ export default { } ], "max": [ - 3677 + 3946 ], "min": [ - 3679 + 3948 ], "stddev": [ - 3685 + 3954 ], "stddev_pop": [ - 3687 + 3956 ], "stddev_samp": [ - 3689 + 3958 ], "sum": [ - 3693 + 3962 ], "var_pop": [ - 3696 + 3965 ], "var_samp": [ - 3698 + 3967 ], "variance": [ - 3700 + 3969 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_aggregate_order_by": { "avg": [ - 3673 + 3942 ], "count": [ - 1736 + 2005 ], "max": [ - 3678 + 3947 ], "min": [ - 3680 + 3949 ], "stddev": [ - 3686 + 3955 ], "stddev_pop": [ - 3688 + 3957 ], "stddev_samp": [ - 3690 + 3959 ], "sum": [ - 3694 + 3963 ], "var_pop": [ - 3697 + 3966 ], "var_samp": [ - 3699 + 3968 ], "variance": [ - 3701 + 3970 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_arr_rel_insert_input": { "data": [ - 3676 + 3945 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_avg_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_avg_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_bool_exp": { "_and": [ - 3674 + 3943 ], "_not": [ - 3674 + 3943 ], "_or": [ - 3674 + 3943 ], "adr": [ - 1735 + 2004 ], "apr": [ - 1735 + 2004 ], "dpr": [ - 1735 + 2004 ], "hltv_rating": [ - 1735 + 2004 ], "kast_pct": [ - 1735 + 2004 ], "kpr": [ - 1735 + 2004 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "rounds_played": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_inc_input": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_insert_input": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match": [ - 1596 + 1838 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1434 + 1676 ], "match_map_id": [ - 3319 + 3588 ], "player": [ - 2614 + 2883 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_max_fields": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_max_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_min_fields": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_min_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_map_id": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3665 + 3934 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_select_column": {}, "v_player_match_map_hltv_set_input": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_pop_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_pop_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_samp_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stddev_samp_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stream_cursor_input": { "initial_value": [ - 3692 + 3961 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_stream_cursor_value_input": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_sum_fields": { "adr": [ - 1734 + 2003 ], "apr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_sum_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_updates": { "_inc": [ - 3675 + 3944 ], "_set": [ - 3684 + 3953 ], "where": [ - 3674 + 3943 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_var_pop_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_var_pop_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_var_samp_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_var_samp_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_variance_fields": { "adr": [ - 25 + 26 ], "apr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_hltv_variance_order_by": { "adr": [ - 1736 + 2005 ], "apr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles": { "adr": [ - 1734 + 2003 ], "awp_kills": [ - 34 + 35 ], "awp_share": [ - 1734 + 2003 ], "deaths": [ - 34 + 35 ], "dpr": [ - 1734 + 2003 ], "entry_rate": [ - 1734 + 2003 ], "flash_assists": [ - 34 + 35 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kills": [ - 34 + 35 ], "kpr": [ - 1734 + 2003 ], "lineup_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "match_map": [ - 1416 + 1658 ], "match_map_id": [ - 3319 + 3588 ], "open_deaths": [ - 34 + 35 ], "open_kills": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "player": [ - 2603 + 2872 ], "role": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "support_idx": [ - 1734 + 2003 ], "total_kills": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "util_damage": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_aggregate": { "aggregate": [ - 3704 + 3973 ], "nodes": [ - 3702 + 3971 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_aggregate_fields": { "avg": [ - 3705 + 3974 ], "count": [ - 34, + 35, { "columns": [ - 3710, + 3979, "[v_player_match_map_roles_select_column!]" ], "distinct": [ @@ -91033,1080 +95987,1080 @@ export default { } ], "max": [ - 3707 + 3976 ], "min": [ - 3708 + 3977 ], "stddev": [ - 3711 + 3980 ], "stddev_pop": [ - 3712 + 3981 ], "stddev_samp": [ - 3713 + 3982 ], "sum": [ - 3716 + 3985 ], "var_pop": [ - 3717 + 3986 ], "var_samp": [ - 3718 + 3987 ], "variance": [ - 3719 + 3988 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_avg_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_bool_exp": { "_and": [ - 3706 + 3975 ], "_not": [ - 3706 + 3975 ], "_or": [ - 3706 + 3975 ], "adr": [ - 1735 + 2004 ], "awp_kills": [ - 35 + 36 ], "awp_share": [ - 1735 + 2004 ], "deaths": [ - 35 + 36 ], "dpr": [ - 1735 + 2004 ], "entry_rate": [ - 1735 + 2004 ], "flash_assists": [ - 35 + 36 ], "hltv_rating": [ - 1735 + 2004 ], "kast_pct": [ - 1735 + 2004 ], "kills": [ - 35 + 36 ], "kpr": [ - 1735 + 2004 ], "lineup_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "match_map": [ - 1425 + 1667 ], "match_map_id": [ - 3320 + 3589 ], "open_deaths": [ - 35 + 36 ], "open_kills": [ - 35 + 36 ], "opening_attempts": [ - 35 + 36 ], "player": [ - 2607 + 2876 ], "role": [ - 65 + 66 ], "rounds": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "support_idx": [ - 1735 + 2004 ], "total_kills": [ - 35 + 36 ], "trade_kill_successes": [ - 35 + 36 ], "traded_death_successes": [ - 35 + 36 ], "util_damage": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_max_fields": { "adr": [ - 1734 + 2003 ], "awp_kills": [ - 34 + 35 ], "awp_share": [ - 1734 + 2003 ], "deaths": [ - 34 + 35 ], "dpr": [ - 1734 + 2003 ], "entry_rate": [ - 1734 + 2003 ], "flash_assists": [ - 34 + 35 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kills": [ - 34 + 35 ], "kpr": [ - 1734 + 2003 ], "lineup_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "open_deaths": [ - 34 + 35 ], "open_kills": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "role": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "support_idx": [ - 1734 + 2003 ], "total_kills": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "util_damage": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_min_fields": { "adr": [ - 1734 + 2003 ], "awp_kills": [ - 34 + 35 ], "awp_share": [ - 1734 + 2003 ], "deaths": [ - 34 + 35 ], "dpr": [ - 1734 + 2003 ], "entry_rate": [ - 1734 + 2003 ], "flash_assists": [ - 34 + 35 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kills": [ - 34 + 35 ], "kpr": [ - 1734 + 2003 ], "lineup_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "open_deaths": [ - 34 + 35 ], "open_kills": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "role": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "support_idx": [ - 1734 + 2003 ], "total_kills": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "util_damage": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_order_by": { "adr": [ - 1736 + 2005 ], "awp_kills": [ - 1736 + 2005 ], "awp_share": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "entry_rate": [ - 1736 + 2005 ], "flash_assists": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "lineup_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "match_map": [ - 1436 + 1678 ], "match_map_id": [ - 1736 + 2005 ], "open_deaths": [ - 1736 + 2005 ], "open_kills": [ - 1736 + 2005 ], "opening_attempts": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "role": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "support_idx": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "trade_kill_successes": [ - 1736 + 2005 ], "traded_death_successes": [ - 1736 + 2005 ], "util_damage": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_select_column": {}, "v_player_match_map_roles_stddev_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_stddev_pop_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_stddev_samp_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_stream_cursor_input": { "initial_value": [ - 3715 + 3984 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_stream_cursor_value_input": { "adr": [ - 1734 + 2003 ], "awp_kills": [ - 34 + 35 ], "awp_share": [ - 1734 + 2003 ], "deaths": [ - 34 + 35 ], "dpr": [ - 1734 + 2003 ], "entry_rate": [ - 1734 + 2003 ], "flash_assists": [ - 34 + 35 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kills": [ - 34 + 35 ], "kpr": [ - 1734 + 2003 ], "lineup_id": [ - 3319 + 3588 ], "match_id": [ - 3319 + 3588 ], "match_map_id": [ - 3319 + 3588 ], "open_deaths": [ - 34 + 35 ], "open_kills": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "role": [ - 63 + 64 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "support_idx": [ - 1734 + 2003 ], "total_kills": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "util_damage": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_sum_fields": { "adr": [ - 1734 + 2003 ], "awp_kills": [ - 34 + 35 ], "awp_share": [ - 1734 + 2003 ], "deaths": [ - 34 + 35 ], "dpr": [ - 1734 + 2003 ], "entry_rate": [ - 1734 + 2003 ], "flash_assists": [ - 34 + 35 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kills": [ - 34 + 35 ], "kpr": [ - 1734 + 2003 ], "open_deaths": [ - 34 + 35 ], "open_kills": [ - 34 + 35 ], "opening_attempts": [ - 34 + 35 ], "rounds": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "support_idx": [ - 1734 + 2003 ], "total_kills": [ - 34 + 35 ], "trade_kill_successes": [ - 34 + 35 ], "traded_death_successes": [ - 34 + 35 ], "util_damage": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_var_pop_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_var_samp_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_map_roles_variance_fields": { "adr": [ - 25 + 26 ], "awp_kills": [ - 25 + 26 ], "awp_share": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "entry_rate": [ - 25 + 26 ], "flash_assists": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "open_deaths": [ - 25 + 26 ], "open_kills": [ - 25 + 26 ], "opening_attempts": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "support_idx": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "trade_kill_successes": [ - 25 + 26 ], "traded_death_successes": [ - 25 + 26 ], "util_damage": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "map": [ - 1055 + 1297 ], "map_id": [ - 3319 + 3588 ], "match": [ - 1578 + 1820 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_aggregate": { "aggregate": [ - 3722 + 3991 ], "nodes": [ - 3720 + 3989 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_aggregate_fields": { "avg": [ - 3723 + 3992 ], "count": [ - 34, + 35, { "columns": [ - 3728, + 3997, "[v_player_match_performance_select_column!]" ], "distinct": [ @@ -92115,435 +97069,435 @@ export default { } ], "max": [ - 3725 + 3994 ], "min": [ - 3726 + 3995 ], "stddev": [ - 3729 + 3998 ], "stddev_pop": [ - 3730 + 3999 ], "stddev_samp": [ - 3731 + 4000 ], "sum": [ - 3734 + 4003 ], "var_pop": [ - 3735 + 4004 ], "var_samp": [ - 3736 + 4005 ], "variance": [ - 3737 + 4006 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_avg_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_bool_exp": { "_and": [ - 3724 + 3993 ], "_not": [ - 3724 + 3993 ], "_or": [ - 3724 + 3993 ], "assists": [ - 35 + 36 ], "deaths": [ - 35 + 36 ], "kills": [ - 35 + 36 ], "map": [ - 1064 + 1306 ], "map_id": [ - 3320 + 3589 ], "match": [ - 1587 + 1829 ], "match_created_at": [ - 2923 + 3192 ], "match_id": [ - 3320 + 3589 ], "match_result": [ - 65 + 66 ], "player_steam_id": [ - 163 + 164 ], "source": [ - 65 + 66 ], "type": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_max_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_min_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "map": [ - 1074 + 1316 ], "map_id": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_created_at": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "match_result": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "source": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_select_column": {}, "v_player_match_performance_stddev_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_stddev_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_stddev_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_stream_cursor_input": { "initial_value": [ - 3733 + 4002 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_stream_cursor_value_input": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "map_id": [ - 3319 + 3588 ], "match_created_at": [ - 2922 + 3191 ], "match_id": [ - 3319 + 3588 ], "match_result": [ - 63 + 64 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_sum_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "kills": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_var_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_var_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_performance_variance_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating": { "adr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match": [ - 1578 + 1820 ], "match_id": [ - 3319 + 3588 ], "player": [ - 2603 + 2872 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_aggregate": { "aggregate": [ - 3740 + 4009 ], "nodes": [ - 3738 + 4007 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_aggregate_fields": { "avg": [ - 3741 + 4010 ], "count": [ - 34, + 35, { "columns": [ - 3746, + 4015, "[v_player_match_rating_select_column!]" ], "distinct": [ @@ -92552,484 +97506,484 @@ export default { } ], "max": [ - 3743 + 4012 ], "min": [ - 3744 + 4013 ], "stddev": [ - 3747 + 4016 ], "stddev_pop": [ - 3748 + 4017 ], "stddev_samp": [ - 3749 + 4018 ], "sum": [ - 3752 + 4021 ], "var_pop": [ - 3753 + 4022 ], "var_samp": [ - 3754 + 4023 ], "variance": [ - 3755 + 4024 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_avg_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_bool_exp": { "_and": [ - 3742 + 4011 ], "_not": [ - 3742 + 4011 ], "_or": [ - 3742 + 4011 ], "adr": [ - 1735 + 2004 ], "dpr": [ - 1735 + 2004 ], "hltv_rating": [ - 1735 + 2004 ], "kast_pct": [ - 1735 + 2004 ], "kpr": [ - 1735 + 2004 ], "match": [ - 1587 + 1829 ], "match_id": [ - 3320 + 3589 ], "player": [ - 2607 + 2876 ], "rounds_played": [ - 35 + 36 ], "steam_id": [ - 163 + 164 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_max_fields": { "adr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_min_fields": { "adr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_order_by": { "adr": [ - 1736 + 2005 ], "dpr": [ - 1736 + 2005 ], "hltv_rating": [ - 1736 + 2005 ], "kast_pct": [ - 1736 + 2005 ], "kpr": [ - 1736 + 2005 ], "match": [ - 1598 + 1840 ], "match_id": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "rounds_played": [ - 1736 + 2005 ], "steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_select_column": {}, "v_player_match_rating_stddev_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_stddev_pop_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_stddev_samp_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_stream_cursor_input": { "initial_value": [ - 3751 + 4020 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_stream_cursor_value_input": { "adr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "match_id": [ - 3319 + 3588 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_sum_fields": { "adr": [ - 1734 + 2003 ], "dpr": [ - 1734 + 2003 ], "hltv_rating": [ - 1734 + 2003 ], "kast_pct": [ - 1734 + 2003 ], "kpr": [ - 1734 + 2003 ], "rounds_played": [ - 34 + 35 ], "steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_var_pop_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_var_samp_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_match_rating_variance_fields": { "adr": [ - 25 + 26 ], "dpr": [ - 25 + 26 ], "hltv_rating": [ - 25 + 26 ], "kast_pct": [ - 25 + 26 ], "kpr": [ - 25 + 26 ], "rounds_played": [ - 25 + 26 ], "steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_aggregate": { "aggregate": [ - 3760 + 4029 ], "nodes": [ - 3756 + 4025 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_aggregate_bool_exp": { "count": [ - 3759 + 4028 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_aggregate_bool_exp_count": { "arguments": [ - 3772 + 4041 ], "distinct": [ 3 ], "filter": [ - 3765 + 4034 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_aggregate_fields": { "avg": [ - 3763 + 4032 ], "count": [ - 34, + 35, { "columns": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "distinct": [ @@ -93038,506 +97992,506 @@ export default { } ], "max": [ - 3767 + 4036 ], "min": [ - 3769 + 4038 ], "stddev": [ - 3773 + 4042 ], "stddev_pop": [ - 3775 + 4044 ], "stddev_samp": [ - 3777 + 4046 ], "sum": [ - 3781 + 4050 ], "var_pop": [ - 3783 + 4052 ], "var_samp": [ - 3785 + 4054 ], "variance": [ - 3787 + 4056 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_aggregate_order_by": { "avg": [ - 3764 + 4033 ], "count": [ - 1736 + 2005 ], "max": [ - 3768 + 4037 ], "min": [ - 3770 + 4039 ], "stddev": [ - 3774 + 4043 ], "stddev_pop": [ - 3776 + 4045 ], "stddev_samp": [ - 3778 + 4047 ], "sum": [ - 3782 + 4051 ], "var_pop": [ - 3784 + 4053 ], "var_samp": [ - 3786 + 4055 ], "variance": [ - 3788 + 4057 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_arr_rel_insert_input": { "data": [ - 3766 + 4035 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_avg_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_avg_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_bool_exp": { "_and": [ - 3765 + 4034 ], "_not": [ - 3765 + 4034 ], "_or": [ - 3765 + 4034 ], "attacker_steam_id": [ - 163 + 164 ], "kills": [ - 163 + 164 ], "match_id": [ - 3320 + 3589 ], "round": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_insert_input": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_max_fields": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_max_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_min_fields": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_min_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "match_id": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_select_column": {}, "v_player_multi_kills_stddev_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stddev_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stddev_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stddev_pop_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stddev_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stddev_samp_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stream_cursor_input": { "initial_value": [ - 3780 + 4049 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_stream_cursor_value_input": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "match_id": [ - 3319 + 3588 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_sum_fields": { "attacker_steam_id": [ - 162 + 163 ], "kills": [ - 162 + 163 ], "round": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_sum_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_var_pop_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_var_pop_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_var_samp_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_var_samp_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_variance_fields": { "attacker_steam_id": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "round": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_multi_kills_variance_order_by": { "attacker_steam_id": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "round": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage": { "damage": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_aggregate": { "aggregate": [ - 3791 + 4060 ], "nodes": [ - 3789 + 4058 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_aggregate_fields": { "avg": [ - 3792 + 4061 ], "count": [ - 34, + 35, { "columns": [ - 3797, + 4066, "[v_player_weapon_damage_select_column!]" ], "distinct": [ @@ -93546,327 +98500,327 @@ export default { } ], "max": [ - 3794 + 4063 ], "min": [ - 3795 + 4064 ], "stddev": [ - 3798 + 4067 ], "stddev_pop": [ - 3799 + 4068 ], "stddev_samp": [ - 3800 + 4069 ], "sum": [ - 3803 + 4072 ], "var_pop": [ - 3804 + 4073 ], "var_samp": [ - 3805 + 4074 ], "variance": [ - 3806 + 4075 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_avg_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_bool_exp": { "_and": [ - 3793 + 4062 ], "_not": [ - 3793 + 4062 ], "_or": [ - 3793 + 4062 ], "damage": [ - 163 + 164 ], "hits": [ - 163 + 164 ], "player_steam_id": [ - 163 + 164 ], "source": [ - 65 + 66 ], "type": [ - 65 + 66 ], "with": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_max_fields": { "damage": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_min_fields": { "damage": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_order_by": { "damage": [ - 1736 + 2005 ], "hits": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "source": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_select_column": {}, "v_player_weapon_damage_stddev_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_stddev_pop_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_stddev_samp_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_stream_cursor_input": { "initial_value": [ - 3802 + 4071 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_stream_cursor_value_input": { "damage": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_sum_fields": { "damage": [ - 162 + 163 ], "hits": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_var_pop_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_var_samp_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_damage_variance_fields": { "damage": [ - 25 + 26 ], "hits": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "rounds": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_aggregate": { "aggregate": [ - 3809 + 4078 ], "nodes": [ - 3807 + 4076 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_aggregate_fields": { "avg": [ - 3810 + 4079 ], "count": [ - 34, + 35, { "columns": [ - 3815, + 4084, "[v_player_weapon_kills_select_column!]" ], "distinct": [ @@ -93875,282 +98829,282 @@ export default { } ], "max": [ - 3812 + 4081 ], "min": [ - 3813 + 4082 ], "stddev": [ - 3816 + 4085 ], "stddev_pop": [ - 3817 + 4086 ], "stddev_samp": [ - 3818 + 4087 ], "sum": [ - 3821 + 4090 ], "var_pop": [ - 3822 + 4091 ], "var_samp": [ - 3823 + 4092 ], "variance": [ - 3824 + 4093 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_avg_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_bool_exp": { "_and": [ - 3811 + 4080 ], "_not": [ - 3811 + 4080 ], "_or": [ - 3811 + 4080 ], "kill_count": [ - 163 + 164 ], "player_steam_id": [ - 163 + 164 ], "rounds": [ - 163 + 164 ], "source": [ - 65 + 66 ], "type": [ - 65 + 66 ], "with": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_max_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "rounds": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_min_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "rounds": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_order_by": { "kill_count": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "rounds": [ - 1736 + 2005 ], "source": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "with": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_select_column": {}, "v_player_weapon_kills_stddev_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_stddev_pop_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_stddev_samp_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_stream_cursor_input": { "initial_value": [ - 3820 + 4089 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_stream_cursor_value_input": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "rounds": [ - 162 + 163 ], "source": [ - 63 + 64 ], "type": [ - 63 + 64 ], "with": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_sum_fields": { "kill_count": [ - 162 + 163 ], "player_steam_id": [ - 162 + 163 ], "rounds": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_var_pop_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_var_samp_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_player_weapon_kills_variance_fields": { "kill_count": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "rounds": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps": { @@ -94158,118 +99112,118 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool": [ - 1036 + 1278 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate": { "aggregate": [ - 3831 + 4100 ], "nodes": [ - 3825 + 4094 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_bool_exp": { "bool_and": [ - 3828 + 4097 ], "bool_or": [ - 3829 + 4098 ], "count": [ - 3830 + 4099 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_bool_exp_bool_and": { "arguments": [ - 3843 + 4112 ], "distinct": [ 3 ], "filter": [ - 3834 + 4103 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_bool_exp_bool_or": { "arguments": [ - 3844 + 4113 ], "distinct": [ 3 ], "filter": [ - 3834 + 4103 ], "predicate": [ 4 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_bool_exp_count": { "arguments": [ - 3842 + 4111 ], "distinct": [ 3 ], "filter": [ - 3834 + 4103 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_fields": { "count": [ - 34, + 35, { "columns": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "distinct": [ @@ -94278,79 +99232,79 @@ export default { } ], "max": [ - 3836 + 4105 ], "min": [ - 3838 + 4107 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_aggregate_order_by": { "count": [ - 1736 + 2005 ], "max": [ - 3837 + 4106 ], "min": [ - 3839 + 4108 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_arr_rel_insert_input": { "data": [ - 3835 + 4104 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_bool_exp": { "_and": [ - 3834 + 4103 ], "_not": [ - 3834 + 4103 ], "_or": [ - 3834 + 4103 ], "active_pool": [ 4 ], "id": [ - 3320 + 3589 ], "label": [ - 65 + 66 ], "map_pool": [ - 1039 + 1281 ], "map_pool_id": [ - 3320 + 3589 ], "name": [ - 65 + 66 ], "patch": [ - 65 + 66 ], "poster": [ - 65 + 66 ], "type": [ - 65 + 66 ], "workshop_map_id": [ - 65 + 66 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_insert_input": { @@ -94358,196 +99312,196 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool": [ - 1045 + 1287 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_max_fields": { "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_max_order_by": { "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "map_pool_id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_min_fields": { "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_min_order_by": { "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "map_pool_id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3825 + 4094 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_order_by": { "active_pool": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "label": [ - 1736 + 2005 ], "map_pool": [ - 1047 + 1289 ], "map_pool_id": [ - 1736 + 2005 ], "name": [ - 1736 + 2005 ], "patch": [ - 1736 + 2005 ], "poster": [ - 1736 + 2005 ], "type": [ - 1736 + 2005 ], "workshop_map_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_select_column": {}, @@ -94558,42 +99512,42 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_stream_cursor_input": { "initial_value": [ - 3847 + 4116 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_stream_cursor_value_input": { @@ -94601,81 +99555,81 @@ export default { 3 ], "id": [ - 3319 + 3588 ], "label": [ - 63 + 64 ], "map_pool_id": [ - 3319 + 3588 ], "name": [ - 63 + 64 ], "patch": [ - 63 + 64 ], "poster": [ - 63 + 64 ], "type": [ - 63 + 64 ], "workshop_map_id": [ - 63 + 64 ], "__typename": [ - 63 + 64 ] }, "v_pool_maps_updates": { "_set": [ - 3845 + 4114 ], "where": [ - 3834 + 4103 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status": { "busy_accounts": [ - 34 + 35 ], "free_accounts": [ - 34 + 35 ], "id": [ - 34 + 35 ], "total_accounts": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_aggregate": { "aggregate": [ - 3851 + 4120 ], "nodes": [ - 3849 + 4118 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_aggregate_fields": { "avg": [ - 3852 + 4121 ], "count": [ - 34, + 35, { "columns": [ - 3857, + 4126, "[v_steam_account_pool_status_select_column!]" ], "distinct": [ @@ -94684,570 +99638,570 @@ export default { } ], "max": [ - 3854 + 4123 ], "min": [ - 3855 + 4124 ], "stddev": [ - 3858 + 4127 ], "stddev_pop": [ - 3859 + 4128 ], "stddev_samp": [ - 3860 + 4129 ], "sum": [ - 3863 + 4132 ], "var_pop": [ - 3864 + 4133 ], "var_samp": [ - 3865 + 4134 ], "variance": [ - 3866 + 4135 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_avg_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_bool_exp": { "_and": [ - 3853 + 4122 ], "_not": [ - 3853 + 4122 ], "_or": [ - 3853 + 4122 ], "busy_accounts": [ - 35 + 36 ], "free_accounts": [ - 35 + 36 ], "id": [ - 35 + 36 ], "total_accounts": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_max_fields": { "busy_accounts": [ - 34 + 35 ], "free_accounts": [ - 34 + 35 ], "id": [ - 34 + 35 ], "total_accounts": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_min_fields": { "busy_accounts": [ - 34 + 35 ], "free_accounts": [ - 34 + 35 ], "id": [ - 34 + 35 ], "total_accounts": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_order_by": { "busy_accounts": [ - 1736 + 2005 ], "free_accounts": [ - 1736 + 2005 ], "id": [ - 1736 + 2005 ], "total_accounts": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_select_column": {}, "v_steam_account_pool_status_stddev_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_stddev_pop_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_stddev_samp_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_stream_cursor_input": { "initial_value": [ - 3862 + 4131 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_stream_cursor_value_input": { "busy_accounts": [ - 34 + 35 ], "free_accounts": [ - 34 + 35 ], "id": [ - 34 + 35 ], "total_accounts": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_sum_fields": { "busy_accounts": [ - 34 + 35 ], "free_accounts": [ - 34 + 35 ], "id": [ - 34 + 35 ], "total_accounts": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_var_pop_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_var_samp_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_steam_account_pool_status_variance_fields": { "busy_accounts": [ - 25 + 26 ], "free_accounts": [ - 25 + 26 ], "id": [ - 25 + 26 ], "total_accounts": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "stage": [ - 3011 + 3280 ], "team": [ - 3144 + 3413 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate": { "aggregate": [ - 3881 + 4150 ], "nodes": [ - 3867 + 4136 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp": { "avg": [ - 3870 + 4139 ], "corr": [ - 3871 + 4140 ], "count": [ - 3873 + 4142 ], "covar_samp": [ - 3874 + 4143 ], "max": [ - 3876 + 4145 ], "min": [ - 3877 + 4146 ], "stddev_samp": [ - 3878 + 4147 ], "sum": [ - 3879 + 4148 ], "var_samp": [ - 3880 + 4149 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_avg": { "arguments": [ - 3900 + 4169 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_corr": { "arguments": [ - 3872 + 4141 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_corr_arguments": { "X": [ - 3901 + 4170 ], "Y": [ - 3901 + 4170 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_count": { "arguments": [ - 3899 + 4168 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 3875 + 4144 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3902 + 4171 ], "Y": [ - 3902 + 4171 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_max": { "arguments": [ - 3903 + 4172 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_min": { "arguments": [ - 3904 + 4173 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3905 + 4174 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_sum": { "arguments": [ - 3906 + 4175 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_bool_exp_var_samp": { "arguments": [ - 3907 + 4176 ], "distinct": [ 3 ], "filter": [ - 3886 + 4155 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_fields": { "avg": [ - 3884 + 4153 ], "count": [ - 34, + 35, { "columns": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "distinct": [ @@ -95256,730 +100210,730 @@ export default { } ], "max": [ - 3890 + 4159 ], "min": [ - 3892 + 4161 ], "stddev": [ - 3909 + 4178 ], "stddev_pop": [ - 3911 + 4180 ], "stddev_samp": [ - 3913 + 4182 ], "sum": [ - 3917 + 4186 ], "var_pop": [ - 3921 + 4190 ], "var_samp": [ - 3923 + 4192 ], "variance": [ - 3925 + 4194 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_aggregate_order_by": { "avg": [ - 3885 + 4154 ], "count": [ - 1736 + 2005 ], "max": [ - 3891 + 4160 ], "min": [ - 3893 + 4162 ], "stddev": [ - 3910 + 4179 ], "stddev_pop": [ - 3912 + 4181 ], "stddev_samp": [ - 3914 + 4183 ], "sum": [ - 3918 + 4187 ], "var_pop": [ - 3922 + 4191 ], "var_samp": [ - 3924 + 4193 ], "variance": [ - 3926 + 4195 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_arr_rel_insert_input": { "data": [ - 3889 + 4158 ], "on_conflict": [ - 3896 + 4165 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_avg_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_avg_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_bool_exp": { "_and": [ - 3886 + 4155 ], "_not": [ - 3886 + 4155 ], "_or": [ - 3886 + 4155 ], "group_number": [ - 35 + 36 ], "head_to_head_match_wins": [ - 35 + 36 ], "head_to_head_rounds_won": [ - 35 + 36 ], "losses": [ - 35 + 36 ], "maps_lost": [ - 35 + 36 ], "maps_won": [ - 35 + 36 ], "matches_played": [ - 35 + 36 ], "matches_remaining": [ - 35 + 36 ], "placement": [ - 35 + 36 ], "rank": [ - 35 + 36 ], "rounds_lost": [ - 35 + 36 ], "rounds_won": [ - 35 + 36 ], "stage": [ - 3023 + 3292 ], "team": [ - 3153 + 3422 ], "team_kdr": [ - 796 + 1038 ], "total_deaths": [ - 35 + 36 ], "total_kills": [ - 35 + 36 ], "tournament_stage_id": [ - 3320 + 3589 ], "tournament_team_id": [ - 3320 + 3589 ], "wins": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_constraint": {}, "v_team_stage_results_inc_input": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_insert_input": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "stage": [ - 3035 + 3304 ], "team": [ - 3162 + 3431 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_max_fields": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_max_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_min_fields": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_min_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_mutation_response": { "affected_rows": [ - 34 + 35 ], "returning": [ - 3867 + 4136 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_obj_rel_insert_input": { "data": [ - 3889 + 4158 ], "on_conflict": [ - 3896 + 4165 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_on_conflict": { "constraint": [ - 3887 + 4156 ], "update_columns": [ - 3919 + 4188 ], "where": [ - 3886 + 4155 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "stage": [ - 3037 + 3306 ], "team": [ - 3164 + 3433 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament_stage_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_pk_columns_input": { "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_select_column": {}, @@ -95993,1173 +100947,1173 @@ 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": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_pop_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_pop_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_samp_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stddev_samp_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stream_cursor_input": { "initial_value": [ - 3916 + 4185 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_stream_cursor_value_input": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_stage_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_sum_fields": { "group_number": [ - 34 + 35 ], "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "placement": [ - 34 + 35 ], "rank": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_sum_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_update_column": {}, "v_team_stage_results_updates": { "_inc": [ - 3888 + 4157 ], "_set": [ - 3908 + 4177 ], "where": [ - 3886 + 4155 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_var_pop_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_var_pop_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_var_samp_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_var_samp_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_variance_fields": { "group_number": [ - 25 + 26 ], "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "placement": [ - 25 + 26 ], "rank": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_stage_results_variance_order_by": { "group_number": [ - 1736 + 2005 ], "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "placement": [ - 1736 + 2005 ], "rank": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team": [ - 3144 + 3413 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate": { "aggregate": [ - 3941 + 4210 ], "nodes": [ - 3927 + 4196 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp": { "avg": [ - 3930 + 4199 ], "corr": [ - 3931 + 4200 ], "count": [ - 3933 + 4202 ], "covar_samp": [ - 3934 + 4203 ], "max": [ - 3936 + 4205 ], "min": [ - 3937 + 4206 ], "stddev_samp": [ - 3938 + 4207 ], "sum": [ - 3939 + 4208 ], "var_samp": [ - 3940 + 4209 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_avg": { "arguments": [ - 3954 + 4223 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_corr": { "arguments": [ - 3932 + 4201 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_corr_arguments": { "X": [ - 3955 + 4224 ], "Y": [ - 3955 + 4224 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_count": { "arguments": [ - 3953 + 4222 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp": { "arguments": [ - 3935 + 4204 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 3956 + 4225 ], "Y": [ - 3956 + 4225 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_max": { "arguments": [ - 3957 + 4226 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_min": { "arguments": [ - 3958 + 4227 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_stddev_samp": { "arguments": [ - 3959 + 4228 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_sum": { "arguments": [ - 3960 + 4229 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_bool_exp_var_samp": { "arguments": [ - 3961 + 4230 ], "distinct": [ 3 ], "filter": [ - 3946 + 4215 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_fields": { "avg": [ - 3944 + 4213 ], "count": [ - 34, + 35, { "columns": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "distinct": [ @@ -97168,545 +102122,545 @@ export default { } ], "max": [ - 3948 + 4217 ], "min": [ - 3950 + 4219 ], "stddev": [ - 3962 + 4231 ], "stddev_pop": [ - 3964 + 4233 ], "stddev_samp": [ - 3966 + 4235 ], "sum": [ - 3970 + 4239 ], "var_pop": [ - 3972 + 4241 ], "var_samp": [ - 3974 + 4243 ], "variance": [ - 3976 + 4245 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_aggregate_order_by": { "avg": [ - 3945 + 4214 ], "count": [ - 1736 + 2005 ], "max": [ - 3949 + 4218 ], "min": [ - 3951 + 4220 ], "stddev": [ - 3963 + 4232 ], "stddev_pop": [ - 3965 + 4234 ], "stddev_samp": [ - 3967 + 4236 ], "sum": [ - 3971 + 4240 ], "var_pop": [ - 3973 + 4242 ], "var_samp": [ - 3975 + 4244 ], "variance": [ - 3977 + 4246 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_arr_rel_insert_input": { "data": [ - 3947 + 4216 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_avg_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_avg_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_bool_exp": { "_and": [ - 3946 + 4215 ], "_not": [ - 3946 + 4215 ], "_or": [ - 3946 + 4215 ], "head_to_head_match_wins": [ - 35 + 36 ], "head_to_head_rounds_won": [ - 35 + 36 ], "losses": [ - 35 + 36 ], "maps_lost": [ - 35 + 36 ], "maps_won": [ - 35 + 36 ], "matches_played": [ - 35 + 36 ], "matches_remaining": [ - 35 + 36 ], "rounds_lost": [ - 35 + 36 ], "rounds_won": [ - 35 + 36 ], "team": [ - 3153 + 3422 ], "team_kdr": [ - 796 + 1038 ], "total_deaths": [ - 35 + 36 ], "total_kills": [ - 35 + 36 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "tournament_team_id": [ - 3320 + 3589 ], "wins": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_insert_input": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team": [ - 3162 + 3431 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_max_fields": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_max_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_min_fields": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_min_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team": [ - 3164 + 3433 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "tournament_team_id": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_select_column": {}, @@ -97720,946 +102674,946 @@ 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": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stddev_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stddev_pop_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stddev_pop_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stddev_samp_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stddev_samp_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stream_cursor_input": { "initial_value": [ - 3969 + 4238 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_stream_cursor_value_input": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "tournament_id": [ - 3319 + 3588 ], "tournament_team_id": [ - 3319 + 3588 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_sum_fields": { "head_to_head_match_wins": [ - 34 + 35 ], "head_to_head_rounds_won": [ - 34 + 35 ], "losses": [ - 34 + 35 ], "maps_lost": [ - 34 + 35 ], "maps_won": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "matches_remaining": [ - 34 + 35 ], "rounds_lost": [ - 34 + 35 ], "rounds_won": [ - 34 + 35 ], "team_kdr": [ - 795 + 1037 ], "total_deaths": [ - 34 + 35 ], "total_kills": [ - 34 + 35 ], "wins": [ - 34 + 35 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_sum_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_var_pop_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_var_pop_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_var_samp_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_var_samp_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_variance_fields": { "head_to_head_match_wins": [ - 25 + 26 ], "head_to_head_rounds_won": [ - 25 + 26 ], "losses": [ - 25 + 26 ], "maps_lost": [ - 25 + 26 ], "maps_won": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "matches_remaining": [ - 25 + 26 ], "rounds_lost": [ - 25 + 26 ], "rounds_won": [ - 25 + 26 ], "team_kdr": [ - 25 + 26 ], "total_deaths": [ - 25 + 26 ], "total_kills": [ - 25 + 26 ], "wins": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_team_tournament_results_variance_order_by": { "head_to_head_match_wins": [ - 1736 + 2005 ], "head_to_head_rounds_won": [ - 1736 + 2005 ], "losses": [ - 1736 + 2005 ], "maps_lost": [ - 1736 + 2005 ], "maps_won": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "matches_remaining": [ - 1736 + 2005 ], "rounds_lost": [ - 1736 + 2005 ], "rounds_won": [ - 1736 + 2005 ], "team_kdr": [ - 1736 + 2005 ], "total_deaths": [ - 1736 + 2005 ], "total_kills": [ - 1736 + 2005 ], "wins": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player": [ - 2603 + 2872 ], "player_steam_id": [ - 162 + 163 ], "tournament": [ - 3273 + 3542 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate": { "aggregate": [ - 3992 + 4261 ], "nodes": [ - 3978 + 4247 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp": { "avg": [ - 3981 + 4250 ], "corr": [ - 3982 + 4251 ], "count": [ - 3984 + 4253 ], "covar_samp": [ - 3985 + 4254 ], "max": [ - 3987 + 4256 ], "min": [ - 3988 + 4257 ], "stddev_samp": [ - 3989 + 4258 ], "sum": [ - 3990 + 4259 ], "var_samp": [ - 3991 + 4260 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_avg": { "arguments": [ - 4005 + 4274 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr": { "arguments": [ - 3983 + 4252 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_corr_arguments": { "X": [ - 4006 + 4275 ], "Y": [ - 4006 + 4275 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_count": { "arguments": [ - 4004 + 4273 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 35 + 36 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp": { "arguments": [ - 3986 + 4255 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_covar_samp_arguments": { "X": [ - 4007 + 4276 ], "Y": [ - 4007 + 4276 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_max": { "arguments": [ - 4008 + 4277 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_min": { "arguments": [ - 4009 + 4278 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_stddev_samp": { "arguments": [ - 4010 + 4279 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_sum": { "arguments": [ - 4011 + 4280 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_bool_exp_var_samp": { "arguments": [ - 4012 + 4281 ], "distinct": [ 3 ], "filter": [ - 3997 + 4266 ], "predicate": [ - 796 + 1038 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_fields": { "avg": [ - 3995 + 4264 ], "count": [ - 34, + 35, { "columns": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "distinct": [ @@ -98668,389 +103622,389 @@ export default { } ], "max": [ - 3999 + 4268 ], "min": [ - 4001 + 4270 ], "stddev": [ - 4013 + 4282 ], "stddev_pop": [ - 4015 + 4284 ], "stddev_samp": [ - 4017 + 4286 ], "sum": [ - 4021 + 4290 ], "var_pop": [ - 4023 + 4292 ], "var_samp": [ - 4025 + 4294 ], "variance": [ - 4027 + 4296 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_aggregate_order_by": { "avg": [ - 3996 + 4265 ], "count": [ - 1736 + 2005 ], "max": [ - 4000 + 4269 ], "min": [ - 4002 + 4271 ], "stddev": [ - 4014 + 4283 ], "stddev_pop": [ - 4016 + 4285 ], "stddev_samp": [ - 4018 + 4287 ], "sum": [ - 4022 + 4291 ], "var_pop": [ - 4024 + 4293 ], "var_samp": [ - 4026 + 4295 ], "variance": [ - 4028 + 4297 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_arr_rel_insert_input": { "data": [ - 3998 + 4267 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_avg_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_avg_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_bool_exp": { "_and": [ - 3997 + 4266 ], "_not": [ - 3997 + 4266 ], "_or": [ - 3997 + 4266 ], "assists": [ - 35 + 36 ], "deaths": [ - 35 + 36 ], "headshot_percentage": [ - 796 + 1038 ], "headshots": [ - 35 + 36 ], "kdr": [ - 796 + 1038 ], "kills": [ - 35 + 36 ], "matches_played": [ - 35 + 36 ], "player": [ - 2607 + 2876 ], "player_steam_id": [ - 163 + 164 ], "tournament": [ - 3284 + 3553 ], "tournament_id": [ - 3320 + 3589 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_insert_input": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player": [ - 2614 + 2883 ], "player_steam_id": [ - 162 + 163 ], "tournament": [ - 3293 + 3562 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_max_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_max_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_min_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_min_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player": [ - 2616 + 2885 ], "player_steam_id": [ - 1736 + 2005 ], "tournament": [ - 3295 + 3564 ], "tournament_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_select_column": {}, @@ -99064,2369 +104018,2797 @@ 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": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stddev_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stddev_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stddev_pop_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stddev_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stddev_samp_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stream_cursor_input": { "initial_value": [ - 4020 + 4289 ], "ordering": [ - 216 + 217 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_stream_cursor_value_input": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "tournament_id": [ - 3319 + 3588 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_sum_fields": { "assists": [ - 34 + 35 ], "deaths": [ - 34 + 35 ], "headshot_percentage": [ - 795 + 1037 ], "headshots": [ - 34 + 35 ], "kdr": [ - 795 + 1037 ], "kills": [ - 34 + 35 ], "matches_played": [ - 34 + 35 ], "player_steam_id": [ - 162 + 163 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_sum_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_var_pop_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_var_pop_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_var_samp_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_var_samp_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_variance_fields": { "assists": [ - 25 + 26 ], "deaths": [ - 25 + 26 ], "headshot_percentage": [ - 25 + 26 ], "headshots": [ - 25 + 26 ], "kdr": [ - 25 + 26 ], "kills": [ - 25 + 26 ], "matches_played": [ - 25 + 26 ], "player_steam_id": [ - 25 + 26 ], "__typename": [ - 63 + 64 ] }, "v_tournament_player_stats_variance_order_by": { "assists": [ - 1736 + 2005 ], "deaths": [ - 1736 + 2005 ], "headshot_percentage": [ - 1736 + 2005 ], "headshots": [ - 1736 + 2005 ], "kdr": [ - 1736 + 2005 ], "kills": [ - 1736 + 2005 ], "matches_played": [ - 1736 + 2005 ], "player_steam_id": [ - 1736 + 2005 ], "__typename": [ - 63 + 64 ] }, "Query": { "_map_pool": [ - 76, + 77, { "distinct_on": [ - 88, + 89, "[_map_pool_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 86, + 87, "[_map_pool_order_by!]" ], "where": [ - 79 + 80 ] } ], "_map_pool_aggregate": [ - 77, + 78, { "distinct_on": [ - 88, + 89, "[_map_pool_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 86, + 87, "[_map_pool_order_by!]" ], "where": [ - 79 + 80 ] } ], "_map_pool_by_pk": [ - 76, + 77, { "map_id": [ - 3319, + 3588, "uuid!" ], "map_pool_id": [ - 3319, + 3588, "uuid!" ] } ], "abandoned_matches": [ - 94, + 95, { "distinct_on": [ - 115, + 116, "[abandoned_matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, + 114, "[abandoned_matches_order_by!]" ], "where": [ - 103 + 104 ] } ], "abandoned_matches_aggregate": [ - 95, + 96, { "distinct_on": [ - 115, + 116, "[abandoned_matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, + 114, "[abandoned_matches_order_by!]" ], "where": [ - 103 + 104 ] } ], "abandoned_matches_by_pk": [ - 94, + 95, { "id": [ - 3319, + 3588, "uuid!" ] } ], "api_keys": [ - 135, + 136, { "distinct_on": [ - 149, + 150, "[api_keys_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 147, + 148, "[api_keys_order_by!]" ], "where": [ - 139 + 140 ] } ], "api_keys_aggregate": [ - 136, + 137, { "distinct_on": [ - 149, + 150, "[api_keys_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 147, + 148, "[api_keys_order_by!]" ], "where": [ - 139 + 140 ] } ], "api_keys_by_pk": [ - 135, + 136, { "id": [ - 3319, + 3588, "uuid!" ] } ], "clip_render_jobs": [ - 166, + 167, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "clip_render_jobs_aggregate": [ - 167, + 168, { "distinct_on": [ - 194, + 195, "[clip_render_jobs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, + 192, "[clip_render_jobs_order_by!]" ], "where": [ - 178 + 179 ] } ], "clip_render_jobs_by_pk": [ - 166, + 167, { "id": [ - 3319, + 3588, "uuid!" ] } ], "dbStats": [ - 15 + 16 ], "db_backups": [ - 217, + 218, { "distinct_on": [ - 231, + 232, "[db_backups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 229, + 230, "[db_backups_order_by!]" ], "where": [ - 221 + 222 ] } ], "db_backups_aggregate": [ - 218, + 219, { "distinct_on": [ - 231, + 232, "[db_backups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 229, + 230, "[db_backups_order_by!]" ], "where": [ - 221 + 222 ] } ], "db_backups_by_pk": [ - 217, + 218, { "id": [ - 3319, + 3588, + "uuid!" + ] + } + ], + "draft_game_picks": [ + 245, + { + "distinct_on": [ + 268, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 266, + "[draft_game_picks_order_by!]" + ], + "where": [ + 256 + ] + } + ], + "draft_game_picks_aggregate": [ + 246, + { + "distinct_on": [ + 268, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 266, + "[draft_game_picks_order_by!]" + ], + "where": [ + 256 + ] + } + ], + "draft_game_picks_by_pk": [ + 245, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "draft_game_players": [ + 290, + { + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" + ], + "where": [ + 301 + ] + } + ], + "draft_game_players_aggregate": [ + 291, + { + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" + ], + "where": [ + 301 + ] + } + ], + "draft_game_players_by_pk": [ + 290, + { + "draft_game_id": [ + 3588, + "uuid!" + ], + "steam_id": [ + 163, + "bigint!" + ] + } + ], + "draft_games": [ + 335, + { + "distinct_on": [ + 359, + "[draft_games_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 + ] + } + ], + "draft_games_aggregate": [ + 336, + { + "distinct_on": [ + 359, + "[draft_games_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 + ] + } + ], + "draft_games_by_pk": [ + 335, + { + "id": [ + 3588, "uuid!" ] } ], "e_check_in_settings": [ - 244, + 381, { "distinct_on": [ - 258, + 395, "[e_check_in_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 256, + 393, "[e_check_in_settings_order_by!]" ], "where": [ - 247 + 384 ] } ], "e_check_in_settings_aggregate": [ - 245, + 382, { "distinct_on": [ - 258, + 395, "[e_check_in_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 256, + 393, "[e_check_in_settings_order_by!]" ], "where": [ - 247 + 384 ] } ], "e_check_in_settings_by_pk": [ - 244, + 381, + { + "value": [ + 64, + "String!" + ] + } + ], + "e_draft_game_captain_selection": [ + 401, + { + "distinct_on": [ + 416, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 414, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 404 + ] + } + ], + "e_draft_game_captain_selection_aggregate": [ + 402, + { + "distinct_on": [ + 416, + "[e_draft_game_captain_selection_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 414, + "[e_draft_game_captain_selection_order_by!]" + ], + "where": [ + 404 + ] + } + ], + "e_draft_game_captain_selection_by_pk": [ + 401, + { + "value": [ + 64, + "String!" + ] + } + ], + "e_draft_game_draft_order": [ + 422, + { + "distinct_on": [ + 437, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 435, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 425 + ] + } + ], + "e_draft_game_draft_order_aggregate": [ + 423, + { + "distinct_on": [ + 437, + "[e_draft_game_draft_order_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 435, + "[e_draft_game_draft_order_order_by!]" + ], + "where": [ + 425 + ] + } + ], + "e_draft_game_draft_order_by_pk": [ + 422, + { + "value": [ + 64, + "String!" + ] + } + ], + "e_draft_game_mode": [ + 443, + { + "distinct_on": [ + 458, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 456, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 446 + ] + } + ], + "e_draft_game_mode_aggregate": [ + 444, + { + "distinct_on": [ + 458, + "[e_draft_game_mode_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 456, + "[e_draft_game_mode_order_by!]" + ], + "where": [ + 446 + ] + } + ], + "e_draft_game_mode_by_pk": [ + 443, + { + "value": [ + 64, + "String!" + ] + } + ], + "e_draft_game_player_status": [ + 464, + { + "distinct_on": [ + 479, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 477, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 467 + ] + } + ], + "e_draft_game_player_status_aggregate": [ + 465, + { + "distinct_on": [ + 479, + "[e_draft_game_player_status_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 477, + "[e_draft_game_player_status_order_by!]" + ], + "where": [ + 467 + ] + } + ], + "e_draft_game_player_status_by_pk": [ + 464, + { + "value": [ + 64, + "String!" + ] + } + ], + "e_draft_game_status": [ + 485, + { + "distinct_on": [ + 500, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 498, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 488 + ] + } + ], + "e_draft_game_status_aggregate": [ + 486, + { + "distinct_on": [ + 500, + "[e_draft_game_status_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 498, + "[e_draft_game_status_order_by!]" + ], + "where": [ + 488 + ] + } + ], + "e_draft_game_status_by_pk": [ + 485, { "value": [ - 63, + 64, "String!" ] } ], "e_friend_status": [ - 264, + 506, { "distinct_on": [ - 279, + 521, "[e_friend_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 277, + 519, "[e_friend_status_order_by!]" ], "where": [ - 267 + 509 ] } ], "e_friend_status_aggregate": [ - 265, + 507, { "distinct_on": [ - 279, + 521, "[e_friend_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 277, + 519, "[e_friend_status_order_by!]" ], "where": [ - 267 + 509 ] } ], "e_friend_status_by_pk": [ - 264, + 506, { "value": [ - 63, + 64, "String!" ] } ], "e_game_cfg_types": [ - 285, + 527, { "distinct_on": [ - 299, + 541, "[e_game_cfg_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 297, + 539, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 530 ] } ], "e_game_cfg_types_aggregate": [ - 286, + 528, { "distinct_on": [ - 299, + 541, "[e_game_cfg_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 297, + 539, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 530 ] } ], "e_game_cfg_types_by_pk": [ - 285, + 527, { "value": [ - 63, + 64, "String!" ] } ], "e_game_server_node_statuses": [ - 305, + 547, { "distinct_on": [ - 320, + 562, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 318, + 560, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 550 ] } ], "e_game_server_node_statuses_aggregate": [ - 306, + 548, { "distinct_on": [ - 320, + 562, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 318, + 560, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 550 ] } ], "e_game_server_node_statuses_by_pk": [ - 305, + 547, { "value": [ - 63, + 64, "String!" ] } ], "e_lobby_access": [ - 326, + 568, { "distinct_on": [ - 341, + 583, "[e_lobby_access_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 339, + 581, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 571 ] } ], "e_lobby_access_aggregate": [ - 327, + 569, { "distinct_on": [ - 341, + 583, "[e_lobby_access_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 339, + 581, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 571 ] } ], "e_lobby_access_by_pk": [ - 326, + 568, { "value": [ - 63, + 64, "String!" ] } ], "e_lobby_player_status": [ - 347, + 589, { "distinct_on": [ - 361, + 603, "[e_lobby_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 359, + 601, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 592 ] } ], "e_lobby_player_status_aggregate": [ - 348, + 590, { "distinct_on": [ - 361, + 603, "[e_lobby_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 359, + 601, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 592 ] } ], "e_lobby_player_status_by_pk": [ - 347, + 589, { "value": [ - 63, + 64, "String!" ] } ], "e_map_pool_types": [ - 367, + 609, { "distinct_on": [ - 382, + 624, "[e_map_pool_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 380, + 622, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 612 ] } ], "e_map_pool_types_aggregate": [ - 368, + 610, { "distinct_on": [ - 382, + 624, "[e_map_pool_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 380, + 622, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 612 ] } ], "e_map_pool_types_by_pk": [ - 367, + 609, { "value": [ - 63, + 64, "String!" ] } ], "e_match_clip_visibility": [ - 388, + 630, { "distinct_on": [ - 402, + 644, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 400, + 642, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 633 ] } ], "e_match_clip_visibility_aggregate": [ - 389, + 631, { "distinct_on": [ - 402, + 644, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 400, + 642, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 633 ] } ], "e_match_clip_visibility_by_pk": [ - 388, + 630, { "value": [ - 63, + 64, "String!" ] } ], "e_match_map_status": [ - 408, + 650, { "distinct_on": [ - 423, + 665, "[e_match_map_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 421, + 663, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 653 ] } ], "e_match_map_status_aggregate": [ - 409, + 651, { "distinct_on": [ - 423, + 665, "[e_match_map_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 421, + 663, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 653 ] } ], "e_match_map_status_by_pk": [ - 408, + 650, { "value": [ - 63, + 64, "String!" ] } ], "e_match_mode": [ - 429, + 671, { "distinct_on": [ - 443, + 685, "[e_match_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 441, + 683, "[e_match_mode_order_by!]" ], "where": [ - 432 + 674 ] } ], "e_match_mode_aggregate": [ - 430, + 672, { "distinct_on": [ - 443, + 685, "[e_match_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 441, + 683, "[e_match_mode_order_by!]" ], "where": [ - 432 + 674 ] } ], "e_match_mode_by_pk": [ - 429, + 671, { "value": [ - 63, + 64, "String!" ] } ], "e_match_status": [ - 449, + 691, { "distinct_on": [ - 464, + 706, "[e_match_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 462, + 704, "[e_match_status_order_by!]" ], "where": [ - 452 + 694 ] } ], "e_match_status_aggregate": [ - 450, + 692, { "distinct_on": [ - 464, + 706, "[e_match_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 462, + 704, "[e_match_status_order_by!]" ], "where": [ - 452 + 694 ] } ], "e_match_status_by_pk": [ - 449, + 691, { "value": [ - 63, + 64, "String!" ] } ], "e_match_types": [ - 470, + 712, { "distinct_on": [ - 485, + 727, "[e_match_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 483, + 725, "[e_match_types_order_by!]" ], "where": [ - 473 + 715 ] } ], "e_match_types_aggregate": [ - 471, + 713, { "distinct_on": [ - 485, + 727, "[e_match_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 483, + 725, "[e_match_types_order_by!]" ], "where": [ - 473 + 715 ] } ], "e_match_types_by_pk": [ - 470, + 712, { "value": [ - 63, + 64, "String!" ] } ], "e_notification_types": [ - 491, + 733, { "distinct_on": [ - 505, + 747, "[e_notification_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 503, + 745, "[e_notification_types_order_by!]" ], "where": [ - 494 + 736 ] } ], "e_notification_types_aggregate": [ - 492, + 734, { "distinct_on": [ - 505, + 747, "[e_notification_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 503, + 745, "[e_notification_types_order_by!]" ], "where": [ - 494 + 736 ] } ], "e_notification_types_by_pk": [ - 491, + 733, { "value": [ - 63, + 64, "String!" ] } ], "e_objective_types": [ - 511, + 753, { "distinct_on": [ - 525, + 767, "[e_objective_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 523, + 765, "[e_objective_types_order_by!]" ], "where": [ - 514 + 756 ] } ], "e_objective_types_aggregate": [ - 512, + 754, { "distinct_on": [ - 525, + 767, "[e_objective_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 523, + 765, "[e_objective_types_order_by!]" ], "where": [ - 514 + 756 ] } ], "e_objective_types_by_pk": [ - 511, + 753, { "value": [ - 63, + 64, "String!" ] } ], "e_player_roles": [ - 531, + 773, { "distinct_on": [ - 545, + 787, "[e_player_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 543, + 785, "[e_player_roles_order_by!]" ], "where": [ - 534 + 776 ] } ], "e_player_roles_aggregate": [ - 532, + 774, { "distinct_on": [ - 545, + 787, "[e_player_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 543, + 785, "[e_player_roles_order_by!]" ], "where": [ - 534 + 776 ] } ], "e_player_roles_by_pk": [ - 531, + 773, { "value": [ - 63, + 64, "String!" ] } ], "e_ready_settings": [ - 551, + 793, { "distinct_on": [ - 565, + 807, "[e_ready_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 563, + 805, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 796 ] } ], "e_ready_settings_aggregate": [ - 552, + 794, { "distinct_on": [ - 565, + 807, "[e_ready_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 563, + 805, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 796 ] } ], "e_ready_settings_by_pk": [ - 551, + 793, { "value": [ - 63, + 64, "String!" ] } ], "e_sanction_types": [ - 571, + 813, { "distinct_on": [ - 586, + 828, "[e_sanction_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 584, + 826, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 816 ] } ], "e_sanction_types_aggregate": [ - 572, + 814, { "distinct_on": [ - 586, + 828, "[e_sanction_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 584, + 826, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 816 ] } ], "e_sanction_types_by_pk": [ - 571, + 813, { "value": [ - 63, + 64, "String!" ] } ], "e_server_types": [ - 592, + 834, { "distinct_on": [ - 606, + 848, "[e_server_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 604, + 846, "[e_server_types_order_by!]" ], "where": [ - 595 + 837 ] } ], "e_server_types_aggregate": [ - 593, + 835, { "distinct_on": [ - 606, + 848, "[e_server_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 604, + 846, "[e_server_types_order_by!]" ], "where": [ - 595 + 837 ] } ], "e_server_types_by_pk": [ - 592, + 834, { "value": [ - 63, + 64, "String!" ] } ], "e_sides": [ - 612, + 854, { "distinct_on": [ - 626, + 868, "[e_sides_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 624, + 866, "[e_sides_order_by!]" ], "where": [ - 615 + 857 ] } ], "e_sides_aggregate": [ - 613, + 855, { "distinct_on": [ - 626, + 868, "[e_sides_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 624, + 866, "[e_sides_order_by!]" ], "where": [ - 615 + 857 ] } ], "e_sides_by_pk": [ - 612, + 854, { "value": [ - 63, + 64, "String!" ] } ], "e_team_roles": [ - 632, + 874, { "distinct_on": [ - 647, + 889, "[e_team_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 645, + 887, "[e_team_roles_order_by!]" ], "where": [ - 635 + 877 ] } ], "e_team_roles_aggregate": [ - 633, + 875, { "distinct_on": [ - 647, + 889, "[e_team_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 645, + 887, "[e_team_roles_order_by!]" ], "where": [ - 635 + 877 ] } ], "e_team_roles_by_pk": [ - 632, + 874, { "value": [ - 63, + 64, "String!" ] } ], "e_team_roster_statuses": [ - 653, + 895, { "distinct_on": [ - 667, + 909, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 665, + 907, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 898 ] } ], "e_team_roster_statuses_aggregate": [ - 654, + 896, { "distinct_on": [ - 667, + 909, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 665, + 907, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 898 ] } ], "e_team_roster_statuses_by_pk": [ - 653, + 895, { "value": [ - 63, + 64, "String!" ] } ], "e_timeout_settings": [ - 673, + 915, { "distinct_on": [ - 687, + 929, "[e_timeout_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 685, + 927, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 918 ] } ], "e_timeout_settings_aggregate": [ - 674, + 916, { "distinct_on": [ - 687, + 929, "[e_timeout_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 685, + 927, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 918 ] } ], "e_timeout_settings_by_pk": [ - 673, + 915, { "value": [ - 63, + 64, "String!" ] } ], "e_tournament_stage_types": [ - 693, + 935, { "distinct_on": [ - 708, + 950, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 706, + 948, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 938 ] } ], "e_tournament_stage_types_aggregate": [ - 694, + 936, { "distinct_on": [ - 708, + 950, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 706, + 948, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 938 ] } ], "e_tournament_stage_types_by_pk": [ - 693, + 935, { "value": [ - 63, + 64, "String!" ] } ], "e_tournament_status": [ - 714, + 956, { "distinct_on": [ - 729, + 971, "[e_tournament_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 727, + 969, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 959 ] } ], "e_tournament_status_aggregate": [ - 715, + 957, { "distinct_on": [ - 729, + 971, "[e_tournament_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 727, + 969, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 959 ] } ], "e_tournament_status_by_pk": [ - 714, + 956, { "value": [ - 63, + 64, "String!" ] } ], "e_utility_types": [ - 735, + 977, { "distinct_on": [ - 749, + 991, "[e_utility_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 747, + 989, "[e_utility_types_order_by!]" ], "where": [ - 738 + 980 ] } ], "e_utility_types_aggregate": [ - 736, + 978, { "distinct_on": [ - 749, + 991, "[e_utility_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 747, + 989, "[e_utility_types_order_by!]" ], "where": [ - 738 + 980 ] } ], "e_utility_types_by_pk": [ - 735, + 977, { "value": [ - 63, + 64, "String!" ] } ], "e_veto_pick_types": [ - 755, + 997, { "distinct_on": [ - 769, + 1011, "[e_veto_pick_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 767, + 1009, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 1000 ] } ], "e_veto_pick_types_aggregate": [ - 756, + 998, { "distinct_on": [ - 769, + 1011, "[e_veto_pick_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 767, + 1009, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 1000 ] } ], "e_veto_pick_types_by_pk": [ - 755, + 997, { "value": [ - 63, + 64, "String!" ] } ], "e_winning_reasons": [ - 775, + 1017, { "distinct_on": [ - 789, + 1031, "[e_winning_reasons_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 787, + 1029, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1020 ] } ], "e_winning_reasons_aggregate": [ - 776, + 1018, { "distinct_on": [ - 789, + 1031, "[e_winning_reasons_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 787, + 1029, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1020 ] } ], "e_winning_reasons_by_pk": [ - 775, + 1017, { "value": [ - 63, + 64, "String!" ] } ], "friends": [ - 797, + 1039, { "distinct_on": [ - 811, + 1053, "[friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 809, + 1051, "[friends_order_by!]" ], "where": [ - 801 + 1043 ] } ], "friends_aggregate": [ - 798, + 1040, { "distinct_on": [ - 811, + 1053, "[friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 809, + 1051, "[friends_order_by!]" ], "where": [ - 801 + 1043 ] } ], "friends_by_pk": [ - 797, + 1039, { "other_player_steam_id": [ - 162, + 163, "bigint!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "game_server_nodes": [ - 824, + 1066, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], "game_server_nodes_aggregate": [ - 825, + 1067, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], "game_server_nodes_by_pk": [ - 824, + 1066, { "id": [ - 63, + 64, "String!" ] } ], "game_versions": [ - 875, + 1117, { "distinct_on": [ - 895, + 1137, "[game_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 892, + 1134, "[game_versions_order_by!]" ], "where": [ - 880 + 1122 ] } ], "game_versions_aggregate": [ - 876, + 1118, { "distinct_on": [ - 895, + 1137, "[game_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 892, + 1134, "[game_versions_order_by!]" ], "where": [ - 880 + 1122 ] } ], "game_versions_by_pk": [ - 875, + 1117, { "build_id": [ - 34, + 35, "Int!" ] } ], "gamedata_signature_validations": [ - 908, + 1150, { "distinct_on": [ - 927, + 1169, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 924, + 1166, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1155 ] } ], "gamedata_signature_validations_aggregate": [ - 909, + 1151, { "distinct_on": [ - 927, + 1169, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 924, + 1166, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1155 ] } ], "gamedata_signature_validations_by_pk": [ - 908, + 1150, { "id": [ - 3319, + 3588, "uuid!" ] } @@ -101441,5139 +106823,5192 @@ export default { 11 ], "getCurrentLocks": [ - 40 + 41 ], "getDatabaseStats": [ - 14 + 15 ], "getDedicatedServerInfo": [ - 16 + 17 ], "getDedicatedServerPlayers": [ - 57, + 58, { "serverId": [ - 63, + 64, "String!" ] } ], "getHighlightPresetAvailability": [ - 30, + 31, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "target_steam_id": [ - 63, + 64, "String!" ] } ], "getIndexIOStats": [ - 32, + 33, { "schemas": [ - 63, + 64, "[String!]" ] } ], "getIndexStats": [ - 33, + 34, { "schemas": [ - 63, + 64, "[String!]" ] } ], "getNodeStats": [ - 45, + 46, { "node": [ - 63, + 64, "String!" ] } ], "getQueryDetail": [ - 51, + 52, { "queryid": [ - 63, + 64, "String!" ] } ], "getQueryStats": [ - 52 + 53 ], "getSchemas": [ - 63 + 64 ], "getServiceStats": [ - 49 + 50 ], "getStorageStats": [ - 61, + 62, { "schemas": [ - 63, + 64, "[String!]" ] } ], "getTableIOStats": [ - 67, + 68, { "schemas": [ - 63, + 64, "[String!]" ] } ], "getTableStats": [ - 69, + 70, { "schemas": [ - 63, + 64, "[String!]" ] } ], "getTimescaleStats": [ - 73 + 74 ], "get_leaderboard": [ - 949, + 1191, { "args": [ - 940, + 1182, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "get_leaderboard_aggregate": [ - 950, + 1192, { "args": [ - 940, + 1182, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "get_player_leaderboard_rank": [ - 2177, + 2446, { "args": [ - 941, + 1183, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2178, + 2447, { "args": [ - 941, + 1183, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "leaderboard_entries": [ - 949, + 1191, { "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "leaderboard_entries_aggregate": [ - 950, + 1192, { "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "listServerFiles": [ - 24, + 25, { "node_id": [ - 63, + 64, "String!" ], "path": [ - 63 + 64 ], "server_id": [ - 63 + 64 ] } ], "lobbies": [ - 972, + 1214, { "distinct_on": [ - 985, + 1227, "[lobbies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 983, + 1225, "[lobbies_order_by!]" ], "where": [ - 975 + 1217 ] } ], "lobbies_aggregate": [ - 973, + 1215, { "distinct_on": [ - 985, + 1227, "[lobbies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 983, + 1225, "[lobbies_order_by!]" ], "where": [ - 975 + 1217 ] } ], "lobbies_by_pk": [ - 972, + 1214, { "id": [ - 3319, + 3588, "uuid!" ] } ], "lobby_players": [ - 991, + 1233, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "lobby_players_aggregate": [ - 992, + 1234, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "lobby_players_by_pk": [ - 991, + 1233, { "lobby_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "map_pools": [ - 1036, + 1278, { "distinct_on": [ - 1049, + 1291, "[map_pools_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1047, + 1289, "[map_pools_order_by!]" ], "where": [ - 1039 + 1281 ] } ], "map_pools_aggregate": [ - 1037, + 1279, { "distinct_on": [ - 1049, + 1291, "[map_pools_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1047, + 1289, "[map_pools_order_by!]" ], "where": [ - 1039 + 1281 ] } ], "map_pools_by_pk": [ - 1036, + 1278, { "id": [ - 3319, + 3588, "uuid!" ] } ], "maps": [ - 1055, + 1297, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "maps_aggregate": [ - 1056, + 1298, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "maps_by_pk": [ - 1055, + 1297, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_clips": [ - 1084, + 1326, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_aggregate": [ - 1085, + 1327, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_by_pk": [ - 1084, + 1326, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_demo_sessions": [ - 1126, + 1368, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "match_demo_sessions_aggregate": [ - 1127, + 1369, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "match_demo_sessions_by_pk": [ - 1126, + 1368, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_invites": [ - 1172, + 1414, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], "match_invites_aggregate": [ - 1173, + 1415, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], "match_invites_by_pk": [ - 1172, + 1414, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_lineup_players": [ - 1213, + 1455, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "match_lineup_players_aggregate": [ - 1214, + 1456, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "match_lineup_players_by_pk": [ - 1213, + 1455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_lineups": [ - 1258, + 1500, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "match_lineups_aggregate": [ - 1259, + 1501, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "match_lineups_by_pk": [ - 1258, + 1500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_demos": [ - 1300, + 1542, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "match_map_demos_aggregate": [ - 1301, + 1543, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "match_map_demos_by_pk": [ - 1300, + 1542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_rounds": [ - 1351, + 1593, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "match_map_rounds_aggregate": [ - 1352, + 1594, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "match_map_rounds_by_pk": [ - 1351, + 1593, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_map_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_map_veto_picks_by_pk": [ - 1392, + 1634, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_maps": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_maps_aggregate": [ - 1417, + 1659, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_maps_by_pk": [ - 1416, + 1658, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_options": [ - 1458, + 1700, { "distinct_on": [ - 1473, + 1715, "[match_options_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1471, + 1713, "[match_options_order_by!]" ], "where": [ - 1462 + 1704 ] } ], "match_options_aggregate": [ - 1459, + 1701, { "distinct_on": [ - 1473, + 1715, "[match_options_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1471, + 1713, "[match_options_order_by!]" ], "where": [ - 1462 + 1704 ] } ], "match_options_by_pk": [ - 1458, + 1700, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_region_veto_picks": [ - 1486, + 1728, { "distinct_on": [ - 1504, + 1746, "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1502, + 1744, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1735 ] } ], "match_region_veto_picks_aggregate": [ - 1487, + 1729, { "distinct_on": [ - 1504, + 1746, "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1502, + 1744, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1735 ] } ], "match_region_veto_picks_by_pk": [ - 1486, + 1728, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_streams": [ - 1510, + 1752, { "distinct_on": [ - 1538, + 1780, "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1535, + 1777, "[match_streams_order_by!]" ], "where": [ - 1522 + 1764 ] } ], "match_streams_aggregate": [ - 1511, + 1753, { "distinct_on": [ - 1538, + 1780, "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1535, + 1777, "[match_streams_order_by!]" ], "where": [ - 1522 + 1764 ] } ], "match_streams_by_pk": [ - 1510, + 1752, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_type_cfgs": [ - 1560, + 1802, { "distinct_on": [ - 1572, + 1814, "[match_type_cfgs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1570, + 1812, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1805 ] } ], "match_type_cfgs_aggregate": [ - 1561, + 1803, { "distinct_on": [ - 1572, + 1814, "[match_type_cfgs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1570, + 1812, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1805 ] } ], "match_type_cfgs_by_pk": [ - 1560, + 1802, { "type": [ - 290, + 532, "e_game_cfg_types_enum!" ] } ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_aggregate": [ - 1579, + 1821, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_by_pk": [ - 1578, + 1820, { "id": [ - 3319, + 3588, "uuid!" ] } ], "me": [ - 41 + 42 ], "migration_hashes_hashes": [ - 1620, + 1862, { "distinct_on": [ - 1632, + 1874, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1630, + 1872, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1865 ] } ], "migration_hashes_hashes_aggregate": [ - 1621, + 1863, { "distinct_on": [ - 1632, + 1874, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1630, + 1872, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1865 ] } ], "migration_hashes_hashes_by_pk": [ - 1620, + 1862, { "name": [ - 63, + 64, "String!" ] } ], "my_friends": [ - 1638, + 1880, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 ] } ], "my_friends_aggregate": [ - 1639, + 1881, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 + ] + } + ], + "news_articles": [ + 1926, + { + "distinct_on": [ + 1940, + "[news_articles_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1938, + "[news_articles_order_by!]" + ], + "where": [ + 1930 + ] + } + ], + "news_articles_aggregate": [ + 1927, + { + "distinct_on": [ + 1940, + "[news_articles_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1938, + "[news_articles_order_by!]" + ], + "where": [ + 1930 + ] + } + ], + "news_articles_by_pk": [ + 1926, + { + "id": [ + 3588, + "uuid!" ] } ], "notifications": [ - 1684, + 1953, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "notifications_aggregate": [ - 1685, + 1954, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "notifications_by_pk": [ - 1684, + 1953, { "id": [ - 3319, + 3588, "uuid!" ] } ], "pending_match_import_players": [ - 1737, + 2006, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "pending_match_import_players_aggregate": [ - 1738, + 2007, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "pending_match_import_players_by_pk": [ - 1737, + 2006, { "steam_id": [ - 162, + 163, "bigint!" ], "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "pending_match_imports": [ - 1778, + 2047, { "distinct_on": [ - 1793, + 2062, "[pending_match_imports_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1791, + 2060, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2051 ] } ], "pending_match_imports_aggregate": [ - 1779, + 2048, { "distinct_on": [ - 1793, + 2062, "[pending_match_imports_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1791, + 2060, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2051 ] } ], "pending_match_imports_by_pk": [ - 1778, + 2047, { "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "player_aim_stats_demo": [ - 1806, + 2075, { "distinct_on": [ - 1820, + 2089, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1818, + 2087, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2079 ] } ], "player_aim_stats_demo_aggregate": [ - 1807, + 2076, { "distinct_on": [ - 1820, + 2089, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1818, + 2087, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2079 ] } ], "player_aim_stats_demo_by_pk": [ - 1806, + 2075, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "player_aim_weapon_stats": [ - 1833, + 2102, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "player_aim_weapon_stats_aggregate": [ - 1834, + 2103, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "player_aim_weapon_stats_by_pk": [ - 1833, + 2102, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "weapon_class": [ - 63, + 64, "String!" ] } ], "player_assists": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_assists_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_assists_by_pk": [ - 1874, + 2143, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_career_stats_v": [ - 1919, + 2188, { "distinct_on": [ - 1927, + 2196, "[player_career_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1926, + 2195, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2192 ] } ], "player_career_stats_v_aggregate": [ - 1920, + 2189, { "distinct_on": [ - 1927, + 2196, "[player_career_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1926, + 2195, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2192 ] } ], "player_damages": [ - 1937, + 2206, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_damages_aggregate": [ - 1938, + 2207, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_damages_by_pk": [ - 1937, + 2206, { "id": [ - 3319, + 3588, "uuid!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_elo": [ - 1978, + 2247, { "distinct_on": [ - 1992, + 2261, "[player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1990, + 2259, "[player_elo_order_by!]" ], "where": [ - 1982 + 2251 ] } ], "player_elo_aggregate": [ - 1979, + 2248, { "distinct_on": [ - 1992, + 2261, "[player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1990, + 2259, "[player_elo_order_by!]" ], "where": [ - 1982 + 2251 ] } ], "player_elo_by_pk": [ - 1978, + 2247, { "match_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "type": [ - 475, + 717, "e_match_types_enum!" ] } ], "player_faceit_rank_history": [ - 2005, + 2274, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "player_faceit_rank_history_aggregate": [ - 2006, + 2275, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "player_faceit_rank_history_by_pk": [ - 2005, + 2274, { "id": [ - 3319, + 3588, "uuid!" ] } ], "player_flashes": [ - 2046, + 2315, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "player_flashes_aggregate": [ - 2047, + 2316, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "player_flashes_by_pk": [ - 2046, + 2315, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_kills": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_kills_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_kills_by_pk": [ - 2091, + 2360, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2103, + 2372, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "player_kills_by_weapon_aggregate": [ - 2104, + 2373, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "player_kills_by_weapon_by_pk": [ - 2103, + 2372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "with": [ - 63, + 64, "String!" ] } ], "player_leaderboard_rank": [ - 2177, + 2446, { "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "player_leaderboard_rank_aggregate": [ - 2178, + 2447, { "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "player_match_map_stats": [ - 2200, + 2469, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "player_match_map_stats_aggregate": [ - 2201, + 2470, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "player_match_map_stats_by_pk": [ - 2200, + 2469, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "player_match_performance_v": [ - 2241, + 2510, { "distinct_on": [ - 2249, + 2518, "[player_match_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2248, + 2517, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2514 ] } ], "player_match_performance_v_aggregate": [ - 2242, + 2511, { "distinct_on": [ - 2249, + 2518, "[player_match_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2248, + 2517, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2514 ] } ], "player_match_stats_v": [ - 2259, + 2528, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "player_match_stats_v_aggregate": [ - 2260, + 2529, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "player_objectives": [ - 2292, + 2561, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "player_objectives_aggregate": [ - 2293, + 2562, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "player_objectives_by_pk": [ - 2292, + 2561, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_performance_v": [ - 2333, + 2602, { "distinct_on": [ - 2341, + 2610, "[player_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2340, + 2609, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2606 ] } ], "player_performance_v_aggregate": [ - 2334, + 2603, { "distinct_on": [ - 2341, + 2610, "[player_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2340, + 2609, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2606 ] } ], "player_premier_rank_history": [ - 2351, + 2620, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "player_premier_rank_history_aggregate": [ - 2352, + 2621, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "player_premier_rank_history_by_pk": [ - 2351, + 2620, { "id": [ - 3319, + 3588, "uuid!" ] } ], "player_sanctions": [ - 2392, + 2661, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], "player_sanctions_aggregate": [ - 2393, + 2662, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], "player_sanctions_by_pk": [ - 2392, + 2661, { "created_at": [ - 2922, + 3191, "timestamptz!" ], "id": [ - 3319, + 3588, "uuid!" ] } ], "player_stats": [ - 2433, + 2702, { "distinct_on": [ - 2448, + 2717, "[player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2446, + 2715, "[player_stats_order_by!]" ], "where": [ - 2437 + 2706 ] } ], "player_stats_aggregate": [ - 2434, + 2703, { "distinct_on": [ - 2448, + 2717, "[player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2446, + 2715, "[player_stats_order_by!]" ], "where": [ - 2437 + 2706 ] } ], "player_stats_by_pk": [ - 2433, + 2702, { "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "player_steam_match_auth": [ - 2461, + 2730, { "distinct_on": [ - 2475, + 2744, "[player_steam_match_auth_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2473, + 2742, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2734 ] } ], "player_steam_match_auth_aggregate": [ - 2462, + 2731, { "distinct_on": [ - 2475, + 2744, "[player_steam_match_auth_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2473, + 2742, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2734 ] } ], "player_steam_match_auth_by_pk": [ - 2461, + 2730, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "player_unused_utility": [ - 2488, + 2757, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utility_aggregate": [ - 2489, + 2758, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utility_by_pk": [ - 2488, + 2757, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "player_utility": [ - 2529, + 2798, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "player_utility_aggregate": [ - 2530, + 2799, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "player_utility_by_pk": [ - 2529, + 2798, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_weapon_stats_v": [ - 2570, + 2839, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "player_weapon_stats_v_aggregate": [ - 2571, + 2840, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "players": [ - 2603, + 2872, { "distinct_on": [ - 2618, + 2887, "[players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2616, + 2885, "[players_order_by!]" ], "where": [ - 2607 + 2876 ] } ], "players_aggregate": [ - 2604, + 2873, { "distinct_on": [ - 2618, + 2887, "[players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2616, + 2885, "[players_order_by!]" ], "where": [ - 2607 + 2876 ] } ], "players_by_pk": [ - 2603, + 2872, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "plugin_versions": [ - 2631, + 2900, { "distinct_on": [ - 2645, + 2914, "[plugin_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2643, + 2912, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2904 ] } ], "plugin_versions_aggregate": [ - 2632, + 2901, { "distinct_on": [ - 2645, + 2914, "[plugin_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2643, + 2912, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2904 ] } ], "plugin_versions_by_pk": [ - 2631, + 2900, { "version": [ - 63, + 64, "String!" ] } ], "readServerFile": [ - 22, + 23, { "file_path": [ - 63, + 64, "String!" ], "node_id": [ - 63, + 64, "String!" ], "server_id": [ - 63 + 64 ] } ], "server_regions": [ - 2659, + 2928, { "distinct_on": [ - 2673, + 2942, "[server_regions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2671, + 2940, "[server_regions_order_by!]" ], "where": [ - 2663 + 2932 ] } ], "server_regions_aggregate": [ - 2660, + 2929, { "distinct_on": [ - 2673, + 2942, "[server_regions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2671, + 2940, "[server_regions_order_by!]" ], "where": [ - 2663 + 2932 ] } ], "server_regions_by_pk": [ - 2659, + 2928, { "value": [ - 63, + 64, "String!" ] } ], "servers": [ - 2686, + 2955, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_aggregate": [ - 2687, + 2956, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_by_pk": [ - 2686, + 2955, { "id": [ - 3319, + 3588, "uuid!" ] } ], "settings": [ - 2732, + 3001, { "distinct_on": [ - 2744, + 3013, "[settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2742, + 3011, "[settings_order_by!]" ], "where": [ - 2735 + 3004 ] } ], "settings_aggregate": [ - 2733, + 3002, { "distinct_on": [ - 2744, + 3013, "[settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2742, + 3011, "[settings_order_by!]" ], "where": [ - 2735 + 3004 ] } ], "settings_by_pk": [ - 2732, + 3001, { "name": [ - 63, + 64, "String!" ] } ], "steam_account_claims": [ - 2750, + 3019, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "steam_account_claims_aggregate": [ - 2751, + 3020, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "steam_account_claims_by_pk": [ - 2750, + 3019, { "id": [ - 3319, + 3588, "uuid!" ] } ], "steam_accounts": [ - 2774, + 3043, { "distinct_on": [ - 2787, + 3056, "[steam_accounts_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2785, + 3054, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3046 ] } ], "steam_accounts_aggregate": [ - 2775, + 3044, { "distinct_on": [ - 2787, + 3056, "[steam_accounts_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2785, + 3054, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3046 ] } ], "steam_accounts_by_pk": [ - 2774, + 3043, { "id": [ - 3319, + 3588, "uuid!" ] } ], "team_invites": [ - 2793, + 3062, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_invites_aggregate": [ - 2794, + 3063, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_invites_by_pk": [ - 2793, + 3062, { "id": [ - 3319, + 3588, "uuid!" ] } ], "team_roster": [ - 2834, + 3103, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_roster_aggregate": [ - 2835, + 3104, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_roster_by_pk": [ - 2834, + 3103, { "player_steam_id": [ - 162, + 163, "bigint!" ], "team_id": [ - 3319, + 3588, "uuid!" ] } ], "teams": [ - 2879, + 3148, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "teams_aggregate": [ - 2880, + 3149, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "teams_by_pk": [ - 2879, + 3148, { "id": [ - 3319, + 3588, "uuid!" ] } ], "telemetryStats": [ - 70 + 71 ], "tournament_brackets": [ - 2924, + 3193, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "tournament_brackets_aggregate": [ - 2925, + 3194, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "tournament_brackets_by_pk": [ - 2924, + 3193, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_organizers": [ - 2970, + 3239, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3240, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_organizers_by_pk": [ - 2970, + 3239, { "steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_stages": [ - 3011, + 3280, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "tournament_stages_aggregate": [ - 3012, + 3281, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "tournament_stages_by_pk": [ - 3011, + 3280, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_team_invites": [ - 3062, + 3331, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "tournament_team_invites_aggregate": [ - 3063, + 3332, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "tournament_team_invites_by_pk": [ - 3062, + 3331, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_team_roster": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_team_roster_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_team_roster_by_pk": [ - 3103, + 3372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_teams": [ - 3144, + 3413, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "tournament_teams_aggregate": [ - 3145, + 3414, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "tournament_teams_by_pk": [ - 3144, + 3413, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_trophies": [ - 3186, + 3455, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3456, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophies_by_pk": [ - 3186, + 3455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_trophy_configs": [ - 3231, + 3500, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "tournament_trophy_configs_aggregate": [ - 3232, + 3501, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "tournament_trophy_configs_by_pk": [ - 3231, + 3500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournaments": [ - 3273, + 3542, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_aggregate": [ - 3274, + 3543, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_by_pk": [ - 3273, + 3542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "v_gpu_pool_status": [ - 3321, + 3590, { "distinct_on": [ - 3329, + 3598, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3328, + 3597, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3594 ] } ], "v_gpu_pool_status_aggregate": [ - 3322, + 3591, { "distinct_on": [ - 3329, + 3598, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3328, + 3597, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3594 ] } ], "v_match_captains": [ - 3339, + 3608, { "distinct_on": [ - 3351, + 3620, "[v_match_captains_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3350, + 3619, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3612 ] } ], "v_match_captains_aggregate": [ - 3340, + 3609, { "distinct_on": [ - 3351, + 3620, "[v_match_captains_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3350, + 3619, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3612 ] } ], "v_match_clutches": [ - 3363, + 3632, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "v_match_clutches_aggregate": [ - 3364, + 3633, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "v_match_kill_pairs": [ - 3396, + 3665, { "distinct_on": [ - 3404, + 3673, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3403, + 3672, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3669 ] } ], "v_match_kill_pairs_aggregate": [ - 3397, + 3666, { "distinct_on": [ - 3404, + 3673, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3403, + 3672, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3669 ] } ], "v_match_lineup_buy_types": [ - 3414, + 3683, { "distinct_on": [ - 3422, + 3691, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3421, + 3690, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3687 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3415, + 3684, { "distinct_on": [ - 3422, + 3691, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3421, + 3690, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3687 ] } ], "v_match_lineup_map_stats": [ - 3432, + 3701, { "distinct_on": [ - 3440, + 3709, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3439, + 3708, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3705 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3433, + 3702, { "distinct_on": [ - 3440, + 3709, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3439, + 3708, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3705 ] } ], "v_match_map_backup_rounds": [ - 3450, + 3719, { "distinct_on": [ - 3461, + 3730, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3460, + 3729, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3723 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3451, + 3720, { "distinct_on": [ - 3461, + 3730, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3460, + 3729, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3723 ] } ], "v_match_player_buy_types": [ - 3473, + 3742, { "distinct_on": [ - 3481, + 3750, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3480, + 3749, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3746 ] } ], "v_match_player_buy_types_aggregate": [ - 3474, + 3743, { "distinct_on": [ - 3481, + 3750, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3480, + 3749, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3746 ] } ], "v_match_player_opening_duels": [ - 3491, + 3760, { "distinct_on": [ - 3507, + 3776, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, + 3775, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3769 ] } ], "v_match_player_opening_duels_aggregate": [ - 3492, + 3761, { "distinct_on": [ - 3507, + 3776, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, + 3775, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3769 ] } ], "v_player_arch_nemesis": [ - 3524, + 3793, { "distinct_on": [ - 3532, + 3801, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3531, + 3800, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3797 ] } ], "v_player_arch_nemesis_aggregate": [ - 3525, + 3794, { "distinct_on": [ - 3532, + 3801, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3531, + 3800, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3797 ] } ], "v_player_damage": [ - 3542, + 3811, { "distinct_on": [ - 3550, + 3819, "[v_player_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3549, + 3818, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3815 ] } ], "v_player_damage_aggregate": [ - 3543, + 3812, { "distinct_on": [ - 3550, + 3819, "[v_player_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3549, + 3818, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3815 ] } ], "v_player_elo": [ - 3560, + 3829, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "v_player_elo_aggregate": [ - 3561, + 3830, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "v_player_map_losses": [ - 3611, + 3880, { "distinct_on": [ - 3619, + 3888, "[v_player_map_losses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3618, + 3887, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3884 ] } ], "v_player_map_losses_aggregate": [ - 3612, + 3881, { "distinct_on": [ - 3619, + 3888, "[v_player_map_losses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3618, + 3887, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3884 ] } ], "v_player_map_wins": [ - 3629, + 3898, { "distinct_on": [ - 3637, + 3906, "[v_player_map_wins_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3636, + 3905, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3902 ] } ], "v_player_map_wins_aggregate": [ - 3630, + 3899, { "distinct_on": [ - 3637, + 3906, "[v_player_map_wins_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3636, + 3905, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3902 ] } ], "v_player_match_head_to_head": [ - 3647, + 3916, { "distinct_on": [ - 3655, + 3924, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3654, + 3923, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3920 ] } ], "v_player_match_head_to_head_aggregate": [ - 3648, + 3917, { "distinct_on": [ - 3655, + 3924, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3654, + 3923, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3920 ] } ], "v_player_match_map_hltv": [ - 3665, + 3934, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "v_player_match_map_hltv_aggregate": [ - 3666, + 3935, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "v_player_match_map_roles": [ - 3702, + 3971, { "distinct_on": [ - 3710, + 3979, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3709, + 3978, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3975 ] } ], "v_player_match_map_roles_aggregate": [ - 3703, + 3972, { "distinct_on": [ - 3710, + 3979, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3709, + 3978, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3975 ] } ], "v_player_match_performance": [ - 3720, + 3989, { "distinct_on": [ - 3728, + 3997, "[v_player_match_performance_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3727, + 3996, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3993 ] } ], "v_player_match_performance_aggregate": [ - 3721, + 3990, { "distinct_on": [ - 3728, + 3997, "[v_player_match_performance_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3727, + 3996, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3993 ] } ], "v_player_match_rating": [ - 3738, + 4007, { "distinct_on": [ - 3746, + 4015, "[v_player_match_rating_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3745, + 4014, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4011 ] } ], "v_player_match_rating_aggregate": [ - 3739, + 4008, { "distinct_on": [ - 3746, + 4015, "[v_player_match_rating_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3745, + 4014, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4011 ] } ], "v_player_multi_kills": [ - 3756, + 4025, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "v_player_multi_kills_aggregate": [ - 3757, + 4026, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "v_player_weapon_damage": [ - 3789, + 4058, { "distinct_on": [ - 3797, + 4066, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3796, + 4065, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4062 ] } ], "v_player_weapon_damage_aggregate": [ - 3790, + 4059, { "distinct_on": [ - 3797, + 4066, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3796, + 4065, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4062 ] } ], "v_player_weapon_kills": [ - 3807, + 4076, { "distinct_on": [ - 3815, + 4084, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3814, + 4083, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4080 ] } ], "v_player_weapon_kills_aggregate": [ - 3808, + 4077, { "distinct_on": [ - 3815, + 4084, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3814, + 4083, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4080 ] } ], "v_pool_maps": [ - 3825, + 4094, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], "v_pool_maps_aggregate": [ - 3826, + 4095, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], "v_steam_account_pool_status": [ - 3849, + 4118, { "distinct_on": [ - 3857, + 4126, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3856, + 4125, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4122 ] } ], "v_steam_account_pool_status_aggregate": [ - 3850, + 4119, { "distinct_on": [ - 3857, + 4126, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3856, + 4125, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4122 ] } ], "v_team_stage_results": [ - 3867, + 4136, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "v_team_stage_results_aggregate": [ - 3868, + 4137, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "v_team_stage_results_by_pk": [ - 3867, + 4136, { "tournament_stage_id": [ - 3319, + 3588, "uuid!" ], "tournament_team_id": [ - 3319, + 3588, "uuid!" ] } ], "v_team_tournament_results": [ - 3927, + 4196, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "v_team_tournament_results_aggregate": [ - 3928, + 4197, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "v_tournament_player_stats": [ - 3978, + 4247, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "v_tournament_player_stats_aggregate": [ - 3979, + 4248, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "__typename": [ - 63 + 64 ] }, "Mutation": { "PreviewTournamentMatchReset": [ - 50, + 51, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "ResetTournamentMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "reset_status": [ - 63 + 64 ], "scheduled_at": [ - 2922 + 3191 ], "winning_lineup_id": [ - 3319 + 3588 ] } ], "acceptInvite": [ - 66, + 67, { "invite_id": [ - 3319, + 3588, "uuid!" ], "type": [ - 63, + 64, "String!" ] } ], "approveNameChange": [ - 66, + 67, { "name": [ - 63, + 64, "String!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "attachDemo": [ - 75 + 76 ], "bakeShaders": [ - 66, + 67, { "game_server_node_id": [ - 3319, + 3588, "uuid!" ] } ], "callForOrganizer": [ - 66, + 67, { "match_id": [ - 63, + 64, "String!" ] } ], "cancelBakeShaders": [ - 66, + 67, { "game_server_node_id": [ - 3319, + 3588, "uuid!" ] } ], "cancelClipRender": [ - 66, + 67, { "job_id": [ - 3319, + 3588, "uuid!" ] } ], "cancelClipRenderBatch": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "cancelMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "cancelReparseAllDemos": [ - 66 + 67 ], "checkIntoMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "clearClipRenderBatch": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "clearFinishedClipRenders": [ - 66 + 67 ], "clearPendingMatchImport": [ - 48, + 49, { "valve_match_id": [ - 63, + 64, "String!" ] } @@ -106582,7 +112017,7 @@ export default { 2, { "label": [ - 63, + 64, "String!" ] } @@ -106591,28 +112026,28 @@ export default { 13, { "fps": [ - 34 + 35 ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "preset": [ - 63, + 64, "String!" ], "resolution": [ - 63 + 64 ], "target_name": [ - 63 + 64 ], "target_steam_id": [ - 63, + 64, "String!" ], "title": [ - 63 + 64 ] } ], @@ -106626,4726 +112061,5153 @@ export default { } ], "createClips": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], + "createDraftGame": [ + 14, + { + "settings": [ + 1188, + "jsonb!" + ] + } + ], "createServerDirectory": [ - 66, + 67, { "dir_path": [ - 63, + 64, "String!" ], "node_id": [ - 63, + 64, "String!" ], "server_id": [ - 63 + 64 ] } ], "deleteClip": [ - 66, + 67, { "clip_id": [ - 3319, + 3588, "uuid!" ] } ], "deleteMatch": [ - 66, + 67, { "match_id": [ - 63, + 64, "String!" ] } ], "deleteOrphanedDemos": [ - 17, + 18, { "keys": [ - 63, + 64, "[String!]" ] } ], "deleteServerItem": [ - 66, + 67, { "node_id": [ - 63, + 64, "String!" ], "path": [ - 63, + 64, "String!" ], "server_id": [ - 63 + 64 ] } ], "deleteTournament": [ - 66, + 67, { "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "delete__map_pool": [ - 84, + 85, { "where": [ - 79, + 80, "_map_pool_bool_exp!" ] } ], "delete__map_pool_by_pk": [ - 76, + 77, { "map_id": [ - 3319, + 3588, "uuid!" ], "map_pool_id": [ - 3319, + 3588, "uuid!" ] } ], "delete_abandoned_matches": [ - 111, + 112, { "where": [ - 103, + 104, "abandoned_matches_bool_exp!" ] } ], "delete_abandoned_matches_by_pk": [ - 94, + 95, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_api_keys": [ - 145, + 146, { "where": [ - 139, + 140, "api_keys_bool_exp!" ] } ], "delete_api_keys_by_pk": [ - 135, + 136, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_clip_render_jobs": [ - 189, + 190, { "where": [ - 178, + 179, "clip_render_jobs_bool_exp!" ] } ], "delete_clip_render_jobs_by_pk": [ - 166, + 167, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_db_backups": [ - 227, + 228, { "where": [ - 221, + 222, "db_backups_bool_exp!" ] } ], "delete_db_backups_by_pk": [ - 217, + 218, { "id": [ - 3319, + 3588, + "uuid!" + ] + } + ], + "delete_draft_game_picks": [ + 264, + { + "where": [ + 256, + "draft_game_picks_bool_exp!" + ] + } + ], + "delete_draft_game_picks_by_pk": [ + 245, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "delete_draft_game_players": [ + 309, + { + "where": [ + 301, + "draft_game_players_bool_exp!" + ] + } + ], + "delete_draft_game_players_by_pk": [ + 290, + { + "draft_game_id": [ + 3588, + "uuid!" + ], + "steam_id": [ + 163, + "bigint!" + ] + } + ], + "delete_draft_games": [ + 354, + { + "where": [ + 346, + "draft_games_bool_exp!" + ] + } + ], + "delete_draft_games_by_pk": [ + 335, + { + "id": [ + 3588, "uuid!" ] } ], "delete_e_check_in_settings": [ - 254, + 391, { "where": [ - 247, + 384, "e_check_in_settings_bool_exp!" ] } ], "delete_e_check_in_settings_by_pk": [ - 244, + 381, + { + "value": [ + 64, + "String!" + ] + } + ], + "delete_e_draft_game_captain_selection": [ + 411, + { + "where": [ + 404, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "delete_e_draft_game_captain_selection_by_pk": [ + 401, { "value": [ - 63, + 64, + "String!" + ] + } + ], + "delete_e_draft_game_draft_order": [ + 432, + { + "where": [ + 425, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "delete_e_draft_game_draft_order_by_pk": [ + 422, + { + "value": [ + 64, + "String!" + ] + } + ], + "delete_e_draft_game_mode": [ + 453, + { + "where": [ + 446, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "delete_e_draft_game_mode_by_pk": [ + 443, + { + "value": [ + 64, + "String!" + ] + } + ], + "delete_e_draft_game_player_status": [ + 474, + { + "where": [ + 467, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_player_status_by_pk": [ + 464, + { + "value": [ + 64, + "String!" + ] + } + ], + "delete_e_draft_game_status": [ + 495, + { + "where": [ + 488, + "e_draft_game_status_bool_exp!" + ] + } + ], + "delete_e_draft_game_status_by_pk": [ + 485, + { + "value": [ + 64, "String!" ] } ], "delete_e_friend_status": [ - 274, + 516, { "where": [ - 267, + 509, "e_friend_status_bool_exp!" ] } ], "delete_e_friend_status_by_pk": [ - 264, + 506, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_game_cfg_types": [ - 295, + 537, { "where": [ - 288, + 530, "e_game_cfg_types_bool_exp!" ] } ], "delete_e_game_cfg_types_by_pk": [ - 285, + 527, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_game_server_node_statuses": [ - 315, + 557, { "where": [ - 308, + 550, "e_game_server_node_statuses_bool_exp!" ] } ], "delete_e_game_server_node_statuses_by_pk": [ - 305, + 547, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_lobby_access": [ - 336, + 578, { "where": [ - 329, + 571, "e_lobby_access_bool_exp!" ] } ], "delete_e_lobby_access_by_pk": [ - 326, + 568, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_lobby_player_status": [ - 357, + 599, { "where": [ - 350, + 592, "e_lobby_player_status_bool_exp!" ] } ], "delete_e_lobby_player_status_by_pk": [ - 347, + 589, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_map_pool_types": [ - 377, + 619, { "where": [ - 370, + 612, "e_map_pool_types_bool_exp!" ] } ], "delete_e_map_pool_types_by_pk": [ - 367, + 609, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_match_clip_visibility": [ - 398, + 640, { "where": [ - 391, + 633, "e_match_clip_visibility_bool_exp!" ] } ], "delete_e_match_clip_visibility_by_pk": [ - 388, + 630, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_match_map_status": [ - 418, + 660, { "where": [ - 411, + 653, "e_match_map_status_bool_exp!" ] } ], "delete_e_match_map_status_by_pk": [ - 408, + 650, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_match_mode": [ - 439, + 681, { "where": [ - 432, + 674, "e_match_mode_bool_exp!" ] } ], "delete_e_match_mode_by_pk": [ - 429, + 671, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_match_status": [ - 459, + 701, { "where": [ - 452, + 694, "e_match_status_bool_exp!" ] } ], "delete_e_match_status_by_pk": [ - 449, + 691, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_match_types": [ - 480, + 722, { "where": [ - 473, + 715, "e_match_types_bool_exp!" ] } ], "delete_e_match_types_by_pk": [ - 470, + 712, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_notification_types": [ - 501, + 743, { "where": [ - 494, + 736, "e_notification_types_bool_exp!" ] } ], "delete_e_notification_types_by_pk": [ - 491, + 733, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_objective_types": [ - 521, + 763, { "where": [ - 514, + 756, "e_objective_types_bool_exp!" ] } ], "delete_e_objective_types_by_pk": [ - 511, + 753, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_player_roles": [ - 541, + 783, { "where": [ - 534, + 776, "e_player_roles_bool_exp!" ] } ], "delete_e_player_roles_by_pk": [ - 531, + 773, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_ready_settings": [ - 561, + 803, { "where": [ - 554, + 796, "e_ready_settings_bool_exp!" ] } ], "delete_e_ready_settings_by_pk": [ - 551, + 793, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_sanction_types": [ - 581, + 823, { "where": [ - 574, + 816, "e_sanction_types_bool_exp!" ] } ], "delete_e_sanction_types_by_pk": [ - 571, + 813, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_server_types": [ - 602, + 844, { "where": [ - 595, + 837, "e_server_types_bool_exp!" ] } ], "delete_e_server_types_by_pk": [ - 592, + 834, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_sides": [ - 622, + 864, { "where": [ - 615, + 857, "e_sides_bool_exp!" ] } ], "delete_e_sides_by_pk": [ - 612, + 854, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_team_roles": [ - 642, + 884, { "where": [ - 635, + 877, "e_team_roles_bool_exp!" ] } ], "delete_e_team_roles_by_pk": [ - 632, + 874, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_team_roster_statuses": [ - 663, + 905, { "where": [ - 656, + 898, "e_team_roster_statuses_bool_exp!" ] } ], "delete_e_team_roster_statuses_by_pk": [ - 653, + 895, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_timeout_settings": [ - 683, + 925, { "where": [ - 676, + 918, "e_timeout_settings_bool_exp!" ] } ], "delete_e_timeout_settings_by_pk": [ - 673, + 915, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_tournament_stage_types": [ - 703, + 945, { "where": [ - 696, + 938, "e_tournament_stage_types_bool_exp!" ] } ], "delete_e_tournament_stage_types_by_pk": [ - 693, + 935, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_tournament_status": [ - 724, + 966, { "where": [ - 717, + 959, "e_tournament_status_bool_exp!" ] } ], "delete_e_tournament_status_by_pk": [ - 714, + 956, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_utility_types": [ - 745, + 987, { "where": [ - 738, + 980, "e_utility_types_bool_exp!" ] } ], "delete_e_utility_types_by_pk": [ - 735, + 977, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_veto_pick_types": [ - 765, + 1007, { "where": [ - 758, + 1000, "e_veto_pick_types_bool_exp!" ] } ], "delete_e_veto_pick_types_by_pk": [ - 755, + 997, { "value": [ - 63, + 64, "String!" ] } ], "delete_e_winning_reasons": [ - 785, + 1027, { "where": [ - 778, + 1020, "e_winning_reasons_bool_exp!" ] } ], "delete_e_winning_reasons_by_pk": [ - 775, + 1017, { "value": [ - 63, + 64, "String!" ] } ], "delete_friends": [ - 807, + 1049, { "where": [ - 801, + 1043, "friends_bool_exp!" ] } ], "delete_friends_by_pk": [ - 797, + 1039, { "other_player_steam_id": [ - 162, + 163, "bigint!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_game_server_nodes": [ - 847, + 1089, { "where": [ - 836, + 1078, "game_server_nodes_bool_exp!" ] } ], "delete_game_server_nodes_by_pk": [ - 824, + 1066, { "id": [ - 63, + 64, "String!" ] } ], "delete_game_versions": [ - 889, + 1131, { "where": [ - 880, + 1122, "game_versions_bool_exp!" ] } ], "delete_game_versions_by_pk": [ - 875, + 1117, { "build_id": [ - 34, + 35, "Int!" ] } ], "delete_gamedata_signature_validations": [ - 922, + 1164, { "where": [ - 913, + 1155, "gamedata_signature_validations_bool_exp!" ] } ], "delete_gamedata_signature_validations_by_pk": [ - 908, + 1150, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_leaderboard_entries": [ - 958, + 1200, { "where": [ - 953, + 1195, "leaderboard_entries_bool_exp!" ] } ], "delete_lobbies": [ - 980, + 1222, { "where": [ - 975, + 1217, "lobbies_bool_exp!" ] } ], "delete_lobbies_by_pk": [ - 972, + 1214, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_lobby_players": [ - 1010, + 1252, { "where": [ - 1002, + 1244, "lobby_players_bool_exp!" ] } ], "delete_lobby_players_by_pk": [ - 991, + 1233, { "lobby_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_map_pools": [ - 1044, + 1286, { "where": [ - 1039, + 1281, "map_pools_bool_exp!" ] } ], "delete_map_pools_by_pk": [ - 1036, + 1278, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_maps": [ - 1071, + 1313, { "where": [ - 1064, + 1306, "maps_bool_exp!" ] } ], "delete_maps_by_pk": [ - 1055, + 1297, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_clips": [ - 1101, + 1343, { "where": [ - 1093, + 1335, "match_clips_bool_exp!" ] } ], "delete_match_clips_by_pk": [ - 1084, + 1326, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_demo_sessions": [ - 1147, + 1389, { "where": [ - 1136, + 1378, "match_demo_sessions_bool_exp!" ] } ], "delete_match_demo_sessions_by_pk": [ - 1126, + 1368, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_invites": [ - 1189, + 1431, { "where": [ - 1181, + 1423, "match_invites_bool_exp!" ] } ], "delete_match_invites_by_pk": [ - 1172, + 1414, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_lineup_players": [ - 1232, + 1474, { "where": [ - 1224, + 1466, "match_lineup_players_bool_exp!" ] } ], "delete_match_lineup_players_by_pk": [ - 1213, + 1455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_lineups": [ - 1275, + 1517, { "where": [ - 1267, + 1509, "match_lineups_bool_exp!" ] } ], "delete_match_lineups_by_pk": [ - 1258, + 1500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_map_demos": [ - 1323, + 1565, { "where": [ - 1312, + 1554, "match_map_demos_bool_exp!" ] } ], "delete_match_map_demos_by_pk": [ - 1300, + 1542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_map_rounds": [ - 1368, + 1610, { "where": [ - 1360, + 1602, "match_map_rounds_bool_exp!" ] } ], "delete_match_map_rounds_by_pk": [ - 1351, + 1593, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_map_veto_picks": [ - 1406, + 1648, { "where": [ - 1399, + 1641, "match_map_veto_picks_bool_exp!" ] } ], "delete_match_map_veto_picks_by_pk": [ - 1392, + 1634, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_maps": [ - 1433, + 1675, { "where": [ - 1425, + 1667, "match_maps_bool_exp!" ] } ], "delete_match_maps_by_pk": [ - 1416, + 1658, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_options": [ - 1468, + 1710, { "where": [ - 1462, + 1704, "match_options_bool_exp!" ] } ], "delete_match_options_by_pk": [ - 1458, + 1700, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_region_veto_picks": [ - 1500, + 1742, { "where": [ - 1493, + 1735, "match_region_veto_picks_bool_exp!" ] } ], "delete_match_region_veto_picks_by_pk": [ - 1486, + 1728, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_streams": [ - 1533, + 1775, { "where": [ - 1522, + 1764, "match_streams_bool_exp!" ] } ], "delete_match_streams_by_pk": [ - 1510, + 1752, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_match_type_cfgs": [ - 1568, + 1810, { "where": [ - 1563, + 1805, "match_type_cfgs_bool_exp!" ] } ], "delete_match_type_cfgs_by_pk": [ - 1560, + 1802, { "type": [ - 290, + 532, "e_game_cfg_types_enum!" ] } ], "delete_matches": [ - 1595, + 1837, { "where": [ - 1587, + 1829, "matches_bool_exp!" ] } ], "delete_matches_by_pk": [ - 1578, + 1820, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_migration_hashes_hashes": [ - 1628, + 1870, { "where": [ - 1623, + 1865, "migration_hashes_hashes_bool_exp!" ] } ], "delete_migration_hashes_hashes_by_pk": [ - 1620, + 1862, { "name": [ - 63, + 64, "String!" ] } ], "delete_my_friends": [ - 1660, + 1902, { "where": [ - 1650, + 1892, "my_friends_bool_exp!" ] } ], + "delete_news_articles": [ + 1936, + { + "where": [ + 1930, + "news_articles_bool_exp!" + ] + } + ], + "delete_news_articles_by_pk": [ + 1926, + { + "id": [ + 3588, + "uuid!" + ] + } + ], "delete_notifications": [ - 1707, + 1976, { "where": [ - 1696, + 1965, "notifications_bool_exp!" ] } ], "delete_notifications_by_pk": [ - 1684, + 1953, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_pending_match_import_players": [ - 1754, + 2023, { "where": [ - 1746, + 2015, "pending_match_import_players_bool_exp!" ] } ], "delete_pending_match_import_players_by_pk": [ - 1737, + 2006, { "steam_id": [ - 162, + 163, "bigint!" ], "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "delete_pending_match_imports": [ - 1788, + 2057, { "where": [ - 1782, + 2051, "pending_match_imports_bool_exp!" ] } ], "delete_pending_match_imports_by_pk": [ - 1778, + 2047, { "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "delete_player_aim_stats_demo": [ - 1816, + 2085, { "where": [ - 1810, + 2079, "player_aim_stats_demo_bool_exp!" ] } ], "delete_player_aim_stats_demo_by_pk": [ - 1806, + 2075, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "delete_player_aim_weapon_stats": [ - 1850, + 2119, { "where": [ - 1842, + 2111, "player_aim_weapon_stats_bool_exp!" ] } ], "delete_player_aim_weapon_stats_by_pk": [ - 1833, + 2102, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "weapon_class": [ - 63, + 64, "String!" ] } ], "delete_player_assists": [ - 1893, + 2162, { "where": [ - 1885, + 2154, "player_assists_bool_exp!" ] } ], "delete_player_assists_by_pk": [ - 1874, + 2143, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_player_damages": [ - 1954, + 2223, { "where": [ - 1946, + 2215, "player_damages_bool_exp!" ] } ], "delete_player_damages_by_pk": [ - 1937, + 2206, { "id": [ - 3319, + 3588, "uuid!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_player_elo": [ - 1988, + 2257, { "where": [ - 1982, + 2251, "player_elo_bool_exp!" ] } ], "delete_player_elo_by_pk": [ - 1978, + 2247, { "match_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "type": [ - 475, + 717, "e_match_types_enum!" ] } ], "delete_player_faceit_rank_history": [ - 2022, + 2291, { "where": [ - 2014, + 2283, "player_faceit_rank_history_bool_exp!" ] } ], "delete_player_faceit_rank_history_by_pk": [ - 2005, + 2274, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_player_flashes": [ - 2065, + 2334, { "where": [ - 2057, + 2326, "player_flashes_bool_exp!" ] } ], "delete_player_flashes_by_pk": [ - 2046, + 2315, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_player_kills": [ - 2151, + 2420, { "where": [ - 2102, + 2371, "player_kills_bool_exp!" ] } ], "delete_player_kills_by_pk": [ - 2091, + 2360, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_player_kills_by_weapon": [ - 2120, + 2389, { "where": [ - 2112, + 2381, "player_kills_by_weapon_bool_exp!" ] } ], "delete_player_kills_by_weapon_by_pk": [ - 2103, + 2372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "with": [ - 63, + 64, "String!" ] } ], "delete_player_leaderboard_rank": [ - 2186, + 2455, { "where": [ - 2181, + 2450, "player_leaderboard_rank_bool_exp!" ] } ], "delete_player_match_map_stats": [ - 2217, + 2486, { "where": [ - 2209, + 2478, "player_match_map_stats_bool_exp!" ] } ], "delete_player_match_map_stats_by_pk": [ - 2200, + 2469, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_player_objectives": [ - 2309, + 2578, { "where": [ - 2301, + 2570, "player_objectives_bool_exp!" ] } ], "delete_player_objectives_by_pk": [ - 2292, + 2561, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_player_premier_rank_history": [ - 2368, + 2637, { "where": [ - 2360, + 2629, "player_premier_rank_history_bool_exp!" ] } ], "delete_player_premier_rank_history_by_pk": [ - 2351, + 2620, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_player_sanctions": [ - 2409, + 2678, { "where": [ - 2401, + 2670, "player_sanctions_bool_exp!" ] } ], "delete_player_sanctions_by_pk": [ - 2392, + 2661, { "created_at": [ - 2922, + 3191, "timestamptz!" ], "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_player_stats": [ - 2443, + 2712, { "where": [ - 2437, + 2706, "player_stats_bool_exp!" ] } ], "delete_player_stats_by_pk": [ - 2433, + 2702, { "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_player_steam_match_auth": [ - 2471, + 2740, { "where": [ - 2465, + 2734, "player_steam_match_auth_bool_exp!" ] } ], "delete_player_steam_match_auth_by_pk": [ - 2461, + 2730, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_player_unused_utility": [ - 2505, + 2774, { "where": [ - 2497, + 2766, "player_unused_utility_bool_exp!" ] } ], "delete_player_unused_utility_by_pk": [ - 2488, + 2757, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_player_utility": [ - 2546, + 2815, { "where": [ - 2538, + 2807, "player_utility_bool_exp!" ] } ], "delete_player_utility_by_pk": [ - 2529, + 2798, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "delete_players": [ - 2613, + 2882, { "where": [ - 2607, + 2876, "players_bool_exp!" ] } ], "delete_players_by_pk": [ - 2603, + 2872, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "delete_plugin_versions": [ - 2641, + 2910, { "where": [ - 2635, + 2904, "plugin_versions_bool_exp!" ] } ], "delete_plugin_versions_by_pk": [ - 2631, + 2900, { "version": [ - 63, + 64, "String!" ] } ], "delete_server_regions": [ - 2668, + 2937, { "where": [ - 2663, + 2932, "server_regions_bool_exp!" ] } ], "delete_server_regions_by_pk": [ - 2659, + 2928, { "value": [ - 63, + 64, "String!" ] } ], "delete_servers": [ - 2705, + 2974, { "where": [ - 2697, + 2966, "servers_bool_exp!" ] } ], "delete_servers_by_pk": [ - 2686, + 2955, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_settings": [ - 2740, + 3009, { "where": [ - 2735, + 3004, "settings_bool_exp!" ] } ], "delete_settings_by_pk": [ - 2732, + 3001, { "name": [ - 63, + 64, "String!" ] } ], "delete_steam_account_claims": [ - 2764, + 3033, { "where": [ - 2757, + 3026, "steam_account_claims_bool_exp!" ] } ], "delete_steam_account_claims_by_pk": [ - 2750, + 3019, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_steam_accounts": [ - 2782, + 3051, { "where": [ - 2777, + 3046, "steam_accounts_bool_exp!" ] } ], "delete_steam_accounts_by_pk": [ - 2774, + 3043, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_team_invites": [ - 2810, + 3079, { "where": [ - 2802, + 3071, "team_invites_bool_exp!" ] } ], "delete_team_invites_by_pk": [ - 2793, + 3062, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_team_roster": [ - 2853, + 3122, { "where": [ - 2845, + 3114, "team_roster_bool_exp!" ] } ], "delete_team_roster_by_pk": [ - 2834, + 3103, { "player_steam_id": [ - 162, + 163, "bigint!" ], "team_id": [ - 3319, + 3588, "uuid!" ] } ], "delete_teams": [ - 2896, + 3165, { "where": [ - 2888, + 3157, "teams_bool_exp!" ] } ], "delete_teams_by_pk": [ - 2879, + 3148, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_brackets": [ - 2943, + 3212, { "where": [ - 2935, + 3204, "tournament_brackets_bool_exp!" ] } ], "delete_tournament_brackets_by_pk": [ - 2924, + 3193, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_organizers": [ - 2987, + 3256, { "where": [ - 2979, + 3248, "tournament_organizers_bool_exp!" ] } ], "delete_tournament_organizers_by_pk": [ - 2970, + 3239, { "steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_stages": [ - 3034, + 3303, { "where": [ - 3023, + 3292, "tournament_stages_bool_exp!" ] } ], "delete_tournament_stages_by_pk": [ - 3011, + 3280, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_team_invites": [ - 3079, + 3348, { "where": [ - 3071, + 3340, "tournament_team_invites_bool_exp!" ] } ], "delete_tournament_team_invites_by_pk": [ - 3062, + 3331, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_team_roster": [ - 3120, + 3389, { "where": [ - 3112, + 3381, "tournament_team_roster_bool_exp!" ] } ], "delete_tournament_team_roster_by_pk": [ - 3103, + 3372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_teams": [ - 3161, + 3430, { "where": [ - 3153, + 3422, "tournament_teams_bool_exp!" ] } ], "delete_tournament_teams_by_pk": [ - 3144, + 3413, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_trophies": [ - 3205, + 3474, { "where": [ - 3197, + 3466, "tournament_trophies_bool_exp!" ] } ], "delete_tournament_trophies_by_pk": [ - 3186, + 3455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournament_trophy_configs": [ - 3248, + 3517, { "where": [ - 3240, + 3509, "tournament_trophy_configs_bool_exp!" ] } ], "delete_tournament_trophy_configs_by_pk": [ - 3231, + 3500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_tournaments": [ - 3292, + 3561, { "where": [ - 3284, + 3553, "tournaments_bool_exp!" ] } ], "delete_tournaments_by_pk": [ - 3273, + 3542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "delete_v_match_captains": [ - 3348, + 3617, { "where": [ - 3343, + 3612, "v_match_captains_bool_exp!" ] } ], "delete_v_match_map_backup_rounds": [ - 3459, + 3728, { "where": [ - 3454, + 3723, "v_match_map_backup_rounds_bool_exp!" ] } ], "delete_v_player_match_map_hltv": [ - 3681, + 3950, { "where": [ - 3674, + 3943, "v_player_match_map_hltv_bool_exp!" ] } ], "delete_v_pool_maps": [ - 3840, + 4109, { "where": [ - 3834, + 4103, "v_pool_maps_bool_exp!" ] } ], "delete_v_team_stage_results": [ - 3894, + 4163, { "where": [ - 3886, + 4155, "v_team_stage_results_bool_exp!" ] } ], "delete_v_team_stage_results_by_pk": [ - 3867, + 4136, { "tournament_stage_id": [ - 3319, + 3588, "uuid!" ], "tournament_team_id": [ - 3319, + 3588, "uuid!" ] } ], "denyInvite": [ - 66, + 67, { "invite_id": [ - 3319, + 3588, "uuid!" ], "type": [ - 63, + 64, "String!" ] } ], + "extendDraftGame": [ + 67, + { + "draftGameId": [ + 3588, + "uuid!" + ] + } + ], "forfeitMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "winning_lineup_id": [ - 3319, + 3588, "uuid!" ] } ], "getLiveStreamSpecState": [ - 39, + 40, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "getTestUploadLink": [ - 27 + 28 ], "insert__map_pool": [ - 84, + 85, { "objects": [ - 81, + 82, "[_map_pool_insert_input!]!" ], "on_conflict": [ - 85 + 86 ] } ], "insert__map_pool_one": [ - 76, + 77, { "object": [ - 81, + 82, "_map_pool_insert_input!" ], "on_conflict": [ - 85 + 86 ] } ], "insert_abandoned_matches": [ - 111, + 112, { "objects": [ - 106, + 107, "[abandoned_matches_insert_input!]!" ], "on_conflict": [ - 112 + 113 ] } ], "insert_abandoned_matches_one": [ - 94, + 95, { "object": [ - 106, + 107, "abandoned_matches_insert_input!" ], "on_conflict": [ - 112 + 113 ] } ], "insert_api_keys": [ - 145, + 146, { "objects": [ - 142, + 143, "[api_keys_insert_input!]!" ], "on_conflict": [ - 146 + 147 ] } ], "insert_api_keys_one": [ - 135, + 136, { "object": [ - 142, + 143, "api_keys_insert_input!" ], "on_conflict": [ - 146 + 147 ] } ], "insert_clip_render_jobs": [ - 189, + 190, { "objects": [ - 184, + 185, "[clip_render_jobs_insert_input!]!" ], "on_conflict": [ - 190 + 191 ] } ], "insert_clip_render_jobs_one": [ - 166, + 167, { "object": [ - 184, + 185, "clip_render_jobs_insert_input!" ], "on_conflict": [ - 190 + 191 ] } ], "insert_db_backups": [ - 227, + 228, { "objects": [ - 224, + 225, "[db_backups_insert_input!]!" ], "on_conflict": [ - 228 + 229 ] } ], "insert_db_backups_one": [ - 217, + 218, { "object": [ - 224, + 225, "db_backups_insert_input!" ], "on_conflict": [ - 228 + 229 + ] + } + ], + "insert_draft_game_picks": [ + 264, + { + "objects": [ + 259, + "[draft_game_picks_insert_input!]!" + ], + "on_conflict": [ + 265 + ] + } + ], + "insert_draft_game_picks_one": [ + 245, + { + "object": [ + 259, + "draft_game_picks_insert_input!" + ], + "on_conflict": [ + 265 + ] + } + ], + "insert_draft_game_players": [ + 309, + { + "objects": [ + 304, + "[draft_game_players_insert_input!]!" + ], + "on_conflict": [ + 310 + ] + } + ], + "insert_draft_game_players_one": [ + 290, + { + "object": [ + 304, + "draft_game_players_insert_input!" + ], + "on_conflict": [ + 310 + ] + } + ], + "insert_draft_games": [ + 354, + { + "objects": [ + 349, + "[draft_games_insert_input!]!" + ], + "on_conflict": [ + 356 + ] + } + ], + "insert_draft_games_one": [ + 335, + { + "object": [ + 349, + "draft_games_insert_input!" + ], + "on_conflict": [ + 356 ] } ], "insert_e_check_in_settings": [ - 254, + 391, { "objects": [ - 251, + 388, "[e_check_in_settings_insert_input!]!" ], "on_conflict": [ - 255 + 392 ] } ], "insert_e_check_in_settings_one": [ - 244, + 381, { "object": [ - 251, + 388, "e_check_in_settings_insert_input!" ], "on_conflict": [ - 255 + 392 + ] + } + ], + "insert_e_draft_game_captain_selection": [ + 411, + { + "objects": [ + 408, + "[e_draft_game_captain_selection_insert_input!]!" + ], + "on_conflict": [ + 413 + ] + } + ], + "insert_e_draft_game_captain_selection_one": [ + 401, + { + "object": [ + 408, + "e_draft_game_captain_selection_insert_input!" + ], + "on_conflict": [ + 413 + ] + } + ], + "insert_e_draft_game_draft_order": [ + 432, + { + "objects": [ + 429, + "[e_draft_game_draft_order_insert_input!]!" + ], + "on_conflict": [ + 434 + ] + } + ], + "insert_e_draft_game_draft_order_one": [ + 422, + { + "object": [ + 429, + "e_draft_game_draft_order_insert_input!" + ], + "on_conflict": [ + 434 + ] + } + ], + "insert_e_draft_game_mode": [ + 453, + { + "objects": [ + 450, + "[e_draft_game_mode_insert_input!]!" + ], + "on_conflict": [ + 455 + ] + } + ], + "insert_e_draft_game_mode_one": [ + 443, + { + "object": [ + 450, + "e_draft_game_mode_insert_input!" + ], + "on_conflict": [ + 455 + ] + } + ], + "insert_e_draft_game_player_status": [ + 474, + { + "objects": [ + 471, + "[e_draft_game_player_status_insert_input!]!" + ], + "on_conflict": [ + 476 + ] + } + ], + "insert_e_draft_game_player_status_one": [ + 464, + { + "object": [ + 471, + "e_draft_game_player_status_insert_input!" + ], + "on_conflict": [ + 476 + ] + } + ], + "insert_e_draft_game_status": [ + 495, + { + "objects": [ + 492, + "[e_draft_game_status_insert_input!]!" + ], + "on_conflict": [ + 497 + ] + } + ], + "insert_e_draft_game_status_one": [ + 485, + { + "object": [ + 492, + "e_draft_game_status_insert_input!" + ], + "on_conflict": [ + 497 ] } ], "insert_e_friend_status": [ - 274, + 516, { "objects": [ - 271, + 513, "[e_friend_status_insert_input!]!" ], "on_conflict": [ - 276 + 518 ] } ], "insert_e_friend_status_one": [ - 264, + 506, { "object": [ - 271, + 513, "e_friend_status_insert_input!" ], "on_conflict": [ - 276 + 518 ] } ], "insert_e_game_cfg_types": [ - 295, + 537, { "objects": [ - 292, + 534, "[e_game_cfg_types_insert_input!]!" ], "on_conflict": [ - 296 + 538 ] } ], "insert_e_game_cfg_types_one": [ - 285, + 527, { "object": [ - 292, + 534, "e_game_cfg_types_insert_input!" ], "on_conflict": [ - 296 + 538 ] } ], "insert_e_game_server_node_statuses": [ - 315, + 557, { "objects": [ - 312, + 554, "[e_game_server_node_statuses_insert_input!]!" ], "on_conflict": [ - 317 + 559 ] } ], "insert_e_game_server_node_statuses_one": [ - 305, + 547, { "object": [ - 312, + 554, "e_game_server_node_statuses_insert_input!" ], "on_conflict": [ - 317 + 559 ] } ], "insert_e_lobby_access": [ - 336, + 578, { "objects": [ - 333, + 575, "[e_lobby_access_insert_input!]!" ], "on_conflict": [ - 338 + 580 ] } ], "insert_e_lobby_access_one": [ - 326, + 568, { "object": [ - 333, + 575, "e_lobby_access_insert_input!" ], "on_conflict": [ - 338 + 580 ] } ], "insert_e_lobby_player_status": [ - 357, + 599, { "objects": [ - 354, + 596, "[e_lobby_player_status_insert_input!]!" ], "on_conflict": [ - 358 + 600 ] } ], "insert_e_lobby_player_status_one": [ - 347, + 589, { "object": [ - 354, + 596, "e_lobby_player_status_insert_input!" ], "on_conflict": [ - 358 + 600 ] } ], "insert_e_map_pool_types": [ - 377, + 619, { "objects": [ - 374, + 616, "[e_map_pool_types_insert_input!]!" ], "on_conflict": [ - 379 + 621 ] } ], "insert_e_map_pool_types_one": [ - 367, + 609, { "object": [ - 374, + 616, "e_map_pool_types_insert_input!" ], "on_conflict": [ - 379 + 621 ] } ], "insert_e_match_clip_visibility": [ - 398, + 640, { "objects": [ - 395, + 637, "[e_match_clip_visibility_insert_input!]!" ], "on_conflict": [ - 399 + 641 ] } ], "insert_e_match_clip_visibility_one": [ - 388, + 630, { "object": [ - 395, + 637, "e_match_clip_visibility_insert_input!" ], "on_conflict": [ - 399 + 641 ] } ], "insert_e_match_map_status": [ - 418, + 660, { "objects": [ - 415, + 657, "[e_match_map_status_insert_input!]!" ], "on_conflict": [ - 420 + 662 ] } ], "insert_e_match_map_status_one": [ - 408, + 650, { "object": [ - 415, + 657, "e_match_map_status_insert_input!" ], "on_conflict": [ - 420 + 662 ] } ], "insert_e_match_mode": [ - 439, + 681, { "objects": [ - 436, + 678, "[e_match_mode_insert_input!]!" ], "on_conflict": [ - 440 + 682 ] } ], "insert_e_match_mode_one": [ - 429, + 671, { "object": [ - 436, + 678, "e_match_mode_insert_input!" ], "on_conflict": [ - 440 + 682 ] } ], "insert_e_match_status": [ - 459, + 701, { "objects": [ - 456, + 698, "[e_match_status_insert_input!]!" ], "on_conflict": [ - 461 + 703 ] } ], "insert_e_match_status_one": [ - 449, + 691, { "object": [ - 456, + 698, "e_match_status_insert_input!" ], "on_conflict": [ - 461 + 703 ] } ], "insert_e_match_types": [ - 480, + 722, { "objects": [ - 477, + 719, "[e_match_types_insert_input!]!" ], "on_conflict": [ - 482 + 724 ] } ], "insert_e_match_types_one": [ - 470, + 712, { "object": [ - 477, + 719, "e_match_types_insert_input!" ], "on_conflict": [ - 482 + 724 ] } ], "insert_e_notification_types": [ - 501, + 743, { "objects": [ - 498, + 740, "[e_notification_types_insert_input!]!" ], "on_conflict": [ - 502 + 744 ] } ], "insert_e_notification_types_one": [ - 491, + 733, { "object": [ - 498, + 740, "e_notification_types_insert_input!" ], "on_conflict": [ - 502 + 744 ] } ], "insert_e_objective_types": [ - 521, + 763, { "objects": [ - 518, + 760, "[e_objective_types_insert_input!]!" ], "on_conflict": [ - 522 + 764 ] } ], "insert_e_objective_types_one": [ - 511, + 753, { "object": [ - 518, + 760, "e_objective_types_insert_input!" ], "on_conflict": [ - 522 + 764 ] } ], "insert_e_player_roles": [ - 541, + 783, { "objects": [ - 538, + 780, "[e_player_roles_insert_input!]!" ], "on_conflict": [ - 542 + 784 ] } ], "insert_e_player_roles_one": [ - 531, + 773, { "object": [ - 538, + 780, "e_player_roles_insert_input!" ], "on_conflict": [ - 542 + 784 ] } ], "insert_e_ready_settings": [ - 561, + 803, { "objects": [ - 558, + 800, "[e_ready_settings_insert_input!]!" ], "on_conflict": [ - 562 + 804 ] } ], "insert_e_ready_settings_one": [ - 551, + 793, { "object": [ - 558, + 800, "e_ready_settings_insert_input!" ], "on_conflict": [ - 562 + 804 ] } ], "insert_e_sanction_types": [ - 581, + 823, { "objects": [ - 578, + 820, "[e_sanction_types_insert_input!]!" ], "on_conflict": [ - 583 + 825 ] } ], "insert_e_sanction_types_one": [ - 571, + 813, { "object": [ - 578, + 820, "e_sanction_types_insert_input!" ], "on_conflict": [ - 583 + 825 ] } ], "insert_e_server_types": [ - 602, + 844, { "objects": [ - 599, + 841, "[e_server_types_insert_input!]!" ], "on_conflict": [ - 603 + 845 ] } ], "insert_e_server_types_one": [ - 592, + 834, { "object": [ - 599, + 841, "e_server_types_insert_input!" ], "on_conflict": [ - 603 + 845 ] } ], "insert_e_sides": [ - 622, + 864, { "objects": [ - 619, + 861, "[e_sides_insert_input!]!" ], "on_conflict": [ - 623 + 865 ] } ], "insert_e_sides_one": [ - 612, + 854, { "object": [ - 619, + 861, "e_sides_insert_input!" ], "on_conflict": [ - 623 + 865 ] } ], "insert_e_team_roles": [ - 642, + 884, { "objects": [ - 639, + 881, "[e_team_roles_insert_input!]!" ], "on_conflict": [ - 644 + 886 ] } ], "insert_e_team_roles_one": [ - 632, + 874, { "object": [ - 639, + 881, "e_team_roles_insert_input!" ], "on_conflict": [ - 644 + 886 ] } ], "insert_e_team_roster_statuses": [ - 663, + 905, { "objects": [ - 660, + 902, "[e_team_roster_statuses_insert_input!]!" ], "on_conflict": [ - 664 + 906 ] } ], "insert_e_team_roster_statuses_one": [ - 653, + 895, { "object": [ - 660, + 902, "e_team_roster_statuses_insert_input!" ], "on_conflict": [ - 664 + 906 ] } ], "insert_e_timeout_settings": [ - 683, + 925, { "objects": [ - 680, + 922, "[e_timeout_settings_insert_input!]!" ], "on_conflict": [ - 684 + 926 ] } ], "insert_e_timeout_settings_one": [ - 673, + 915, { "object": [ - 680, + 922, "e_timeout_settings_insert_input!" ], "on_conflict": [ - 684 + 926 ] } ], "insert_e_tournament_stage_types": [ - 703, + 945, { "objects": [ - 700, + 942, "[e_tournament_stage_types_insert_input!]!" ], "on_conflict": [ - 705 + 947 ] } ], "insert_e_tournament_stage_types_one": [ - 693, + 935, { "object": [ - 700, + 942, "e_tournament_stage_types_insert_input!" ], "on_conflict": [ - 705 + 947 ] } ], "insert_e_tournament_status": [ - 724, + 966, { "objects": [ - 721, + 963, "[e_tournament_status_insert_input!]!" ], "on_conflict": [ - 726 + 968 ] } ], "insert_e_tournament_status_one": [ - 714, + 956, { "object": [ - 721, + 963, "e_tournament_status_insert_input!" ], "on_conflict": [ - 726 + 968 ] } ], "insert_e_utility_types": [ - 745, + 987, { "objects": [ - 742, + 984, "[e_utility_types_insert_input!]!" ], "on_conflict": [ - 746 + 988 ] } ], "insert_e_utility_types_one": [ - 735, + 977, { "object": [ - 742, + 984, "e_utility_types_insert_input!" ], "on_conflict": [ - 746 + 988 ] } ], "insert_e_veto_pick_types": [ - 765, + 1007, { "objects": [ - 762, + 1004, "[e_veto_pick_types_insert_input!]!" ], "on_conflict": [ - 766 + 1008 ] } ], "insert_e_veto_pick_types_one": [ - 755, + 997, { "object": [ - 762, + 1004, "e_veto_pick_types_insert_input!" ], "on_conflict": [ - 766 + 1008 ] } ], "insert_e_winning_reasons": [ - 785, + 1027, { "objects": [ - 782, + 1024, "[e_winning_reasons_insert_input!]!" ], "on_conflict": [ - 786 + 1028 ] } ], "insert_e_winning_reasons_one": [ - 775, + 1017, { "object": [ - 782, + 1024, "e_winning_reasons_insert_input!" ], "on_conflict": [ - 786 + 1028 ] } ], "insert_friends": [ - 807, + 1049, { "objects": [ - 804, + 1046, "[friends_insert_input!]!" ], "on_conflict": [ - 808 + 1050 ] } ], "insert_friends_one": [ - 797, + 1039, { "object": [ - 804, + 1046, "friends_insert_input!" ], "on_conflict": [ - 808 + 1050 ] } ], "insert_game_server_nodes": [ - 847, + 1089, { "objects": [ - 842, + 1084, "[game_server_nodes_insert_input!]!" ], "on_conflict": [ - 849 + 1091 ] } ], "insert_game_server_nodes_one": [ - 824, + 1066, { "object": [ - 842, + 1084, "game_server_nodes_insert_input!" ], "on_conflict": [ - 849 + 1091 ] } ], "insert_game_versions": [ - 889, + 1131, { "objects": [ - 886, + 1128, "[game_versions_insert_input!]!" ], "on_conflict": [ - 891 + 1133 ] } ], "insert_game_versions_one": [ - 875, + 1117, { "object": [ - 886, + 1128, "game_versions_insert_input!" ], "on_conflict": [ - 891 + 1133 ] } ], "insert_gamedata_signature_validations": [ - 922, + 1164, { "objects": [ - 919, + 1161, "[gamedata_signature_validations_insert_input!]!" ], "on_conflict": [ - 923 + 1165 ] } ], "insert_gamedata_signature_validations_one": [ - 908, + 1150, { "object": [ - 919, + 1161, "gamedata_signature_validations_insert_input!" ], "on_conflict": [ - 923 + 1165 ] } ], "insert_leaderboard_entries": [ - 958, + 1200, { "objects": [ - 955, + 1197, "[leaderboard_entries_insert_input!]!" ] } ], "insert_leaderboard_entries_one": [ - 949, + 1191, { "object": [ - 955, + 1197, "leaderboard_entries_insert_input!" ] } ], "insert_lobbies": [ - 980, + 1222, { "objects": [ - 977, + 1219, "[lobbies_insert_input!]!" ], "on_conflict": [ - 982 + 1224 ] } ], "insert_lobbies_one": [ - 972, + 1214, { "object": [ - 977, + 1219, "lobbies_insert_input!" ], "on_conflict": [ - 982 + 1224 ] } ], "insert_lobby_players": [ - 1010, + 1252, { "objects": [ - 1005, + 1247, "[lobby_players_insert_input!]!" ], "on_conflict": [ - 1011 + 1253 ] } ], "insert_lobby_players_one": [ - 991, + 1233, { "object": [ - 1005, + 1247, "lobby_players_insert_input!" ], "on_conflict": [ - 1011 + 1253 ] } ], "insert_map_pools": [ - 1044, + 1286, { "objects": [ - 1041, + 1283, "[map_pools_insert_input!]!" ], "on_conflict": [ - 1046 + 1288 ] } ], "insert_map_pools_one": [ - 1036, + 1278, { "object": [ - 1041, + 1283, "map_pools_insert_input!" ], "on_conflict": [ - 1046 + 1288 ] } ], "insert_maps": [ - 1071, + 1313, { "objects": [ - 1066, + 1308, "[maps_insert_input!]!" ], "on_conflict": [ - 1073 + 1315 ] } ], "insert_maps_one": [ - 1055, + 1297, { "object": [ - 1066, + 1308, "maps_insert_input!" ], "on_conflict": [ - 1073 + 1315 ] } ], "insert_match_clips": [ - 1101, + 1343, { "objects": [ - 1096, + 1338, "[match_clips_insert_input!]!" ], "on_conflict": [ - 1103 + 1345 ] } ], "insert_match_clips_one": [ - 1084, + 1326, { "object": [ - 1096, + 1338, "match_clips_insert_input!" ], "on_conflict": [ - 1103 + 1345 ] } ], "insert_match_demo_sessions": [ - 1147, + 1389, { "objects": [ - 1142, + 1384, "[match_demo_sessions_insert_input!]!" ], "on_conflict": [ - 1148 + 1390 ] } ], "insert_match_demo_sessions_one": [ - 1126, + 1368, { "object": [ - 1142, + 1384, "match_demo_sessions_insert_input!" ], "on_conflict": [ - 1148 + 1390 ] } ], "insert_match_invites": [ - 1189, + 1431, { "objects": [ - 1184, + 1426, "[match_invites_insert_input!]!" ], "on_conflict": [ - 1190 + 1432 ] } ], "insert_match_invites_one": [ - 1172, + 1414, { "object": [ - 1184, + 1426, "match_invites_insert_input!" ], "on_conflict": [ - 1190 + 1432 ] } ], "insert_match_lineup_players": [ - 1232, + 1474, { "objects": [ - 1227, + 1469, "[match_lineup_players_insert_input!]!" ], "on_conflict": [ - 1233 + 1475 ] } ], "insert_match_lineup_players_one": [ - 1213, + 1455, { "object": [ - 1227, + 1469, "match_lineup_players_insert_input!" ], "on_conflict": [ - 1233 + 1475 ] } ], "insert_match_lineups": [ - 1275, + 1517, { "objects": [ - 1270, + 1512, "[match_lineups_insert_input!]!" ], "on_conflict": [ - 1277 + 1519 ] } ], "insert_match_lineups_one": [ - 1258, + 1500, { "object": [ - 1270, + 1512, "match_lineups_insert_input!" ], "on_conflict": [ - 1277 + 1519 ] } ], "insert_match_map_demos": [ - 1323, + 1565, { "objects": [ - 1318, + 1560, "[match_map_demos_insert_input!]!" ], "on_conflict": [ - 1325 + 1567 ] } ], "insert_match_map_demos_one": [ - 1300, + 1542, { "object": [ - 1318, + 1560, "match_map_demos_insert_input!" ], "on_conflict": [ - 1325 + 1567 ] } ], "insert_match_map_rounds": [ - 1368, + 1610, { "objects": [ - 1363, + 1605, "[match_map_rounds_insert_input!]!" ], "on_conflict": [ - 1369 + 1611 ] } ], "insert_match_map_rounds_one": [ - 1351, + 1593, { "object": [ - 1363, + 1605, "match_map_rounds_insert_input!" ], "on_conflict": [ - 1369 + 1611 ] } ], "insert_match_map_veto_picks": [ - 1406, + 1648, { "objects": [ - 1401, + 1643, "[match_map_veto_picks_insert_input!]!" ], "on_conflict": [ - 1407 + 1649 ] } ], "insert_match_map_veto_picks_one": [ - 1392, + 1634, { "object": [ - 1401, + 1643, "match_map_veto_picks_insert_input!" ], "on_conflict": [ - 1407 + 1649 ] } ], "insert_match_maps": [ - 1433, + 1675, { "objects": [ - 1428, + 1670, "[match_maps_insert_input!]!" ], "on_conflict": [ - 1435 + 1677 ] } ], "insert_match_maps_one": [ - 1416, + 1658, { "object": [ - 1428, + 1670, "match_maps_insert_input!" ], "on_conflict": [ - 1435 + 1677 ] } ], "insert_match_options": [ - 1468, + 1710, { "objects": [ - 1465, + 1707, "[match_options_insert_input!]!" ], "on_conflict": [ - 1470 + 1712 ] } ], "insert_match_options_one": [ - 1458, + 1700, { "object": [ - 1465, + 1707, "match_options_insert_input!" ], "on_conflict": [ - 1470 + 1712 ] } ], "insert_match_region_veto_picks": [ - 1500, + 1742, { "objects": [ - 1495, + 1737, "[match_region_veto_picks_insert_input!]!" ], "on_conflict": [ - 1501 + 1743 ] } ], "insert_match_region_veto_picks_one": [ - 1486, + 1728, { "object": [ - 1495, + 1737, "match_region_veto_picks_insert_input!" ], "on_conflict": [ - 1501 + 1743 ] } ], "insert_match_streams": [ - 1533, + 1775, { "objects": [ - 1528, + 1770, "[match_streams_insert_input!]!" ], "on_conflict": [ - 1534 + 1776 ] } ], "insert_match_streams_one": [ - 1510, + 1752, { "object": [ - 1528, + 1770, "match_streams_insert_input!" ], "on_conflict": [ - 1534 + 1776 ] } ], "insert_match_type_cfgs": [ - 1568, + 1810, { "objects": [ - 1565, + 1807, "[match_type_cfgs_insert_input!]!" ], "on_conflict": [ - 1569 + 1811 ] } ], "insert_match_type_cfgs_one": [ - 1560, + 1802, { "object": [ - 1565, + 1807, "match_type_cfgs_insert_input!" ], "on_conflict": [ - 1569 + 1811 ] } ], "insert_matches": [ - 1595, + 1837, { "objects": [ - 1590, + 1832, "[matches_insert_input!]!" ], "on_conflict": [ - 1597 + 1839 ] } ], "insert_matches_one": [ - 1578, + 1820, { "object": [ - 1590, + 1832, "matches_insert_input!" ], "on_conflict": [ - 1597 + 1839 ] } ], "insert_migration_hashes_hashes": [ - 1628, + 1870, { "objects": [ - 1625, + 1867, "[migration_hashes_hashes_insert_input!]!" ], "on_conflict": [ - 1629 + 1871 ] } ], "insert_migration_hashes_hashes_one": [ - 1620, + 1862, { "object": [ - 1625, + 1867, "migration_hashes_hashes_insert_input!" ], "on_conflict": [ - 1629 + 1871 ] } ], "insert_my_friends": [ - 1660, + 1902, { "objects": [ - 1655, + 1897, "[my_friends_insert_input!]!" ] } ], "insert_my_friends_one": [ - 1638, + 1880, { "object": [ - 1655, + 1897, "my_friends_insert_input!" ] } ], + "insert_news_articles": [ + 1936, + { + "objects": [ + 1933, + "[news_articles_insert_input!]!" + ], + "on_conflict": [ + 1937 + ] + } + ], + "insert_news_articles_one": [ + 1926, + { + "object": [ + 1933, + "news_articles_insert_input!" + ], + "on_conflict": [ + 1937 + ] + } + ], "insert_notifications": [ - 1707, + 1976, { "objects": [ - 1702, + 1971, "[notifications_insert_input!]!" ], "on_conflict": [ - 1708 + 1977 ] } ], "insert_notifications_one": [ - 1684, + 1953, { "object": [ - 1702, + 1971, "notifications_insert_input!" ], "on_conflict": [ - 1708 + 1977 ] } ], "insert_pending_match_import_players": [ - 1754, + 2023, { "objects": [ - 1749, + 2018, "[pending_match_import_players_insert_input!]!" ], "on_conflict": [ - 1755 + 2024 ] } ], "insert_pending_match_import_players_one": [ - 1737, + 2006, { "object": [ - 1749, + 2018, "pending_match_import_players_insert_input!" ], "on_conflict": [ - 1755 + 2024 ] } ], "insert_pending_match_imports": [ - 1788, + 2057, { "objects": [ - 1785, + 2054, "[pending_match_imports_insert_input!]!" ], "on_conflict": [ - 1790 + 2059 ] } ], "insert_pending_match_imports_one": [ - 1778, + 2047, { "object": [ - 1785, + 2054, "pending_match_imports_insert_input!" ], "on_conflict": [ - 1790 + 2059 ] } ], "insert_player_aim_stats_demo": [ - 1816, + 2085, { "objects": [ - 1813, + 2082, "[player_aim_stats_demo_insert_input!]!" ], "on_conflict": [ - 1817 + 2086 ] } ], "insert_player_aim_stats_demo_one": [ - 1806, + 2075, { "object": [ - 1813, + 2082, "player_aim_stats_demo_insert_input!" ], "on_conflict": [ - 1817 + 2086 ] } ], "insert_player_aim_weapon_stats": [ - 1850, + 2119, { "objects": [ - 1845, + 2114, "[player_aim_weapon_stats_insert_input!]!" ], "on_conflict": [ - 1851 + 2120 ] } ], "insert_player_aim_weapon_stats_one": [ - 1833, + 2102, { "object": [ - 1845, + 2114, "player_aim_weapon_stats_insert_input!" ], "on_conflict": [ - 1851 + 2120 ] } ], "insert_player_assists": [ - 1893, + 2162, { "objects": [ - 1888, + 2157, "[player_assists_insert_input!]!" ], "on_conflict": [ - 1894 + 2163 ] } ], "insert_player_assists_one": [ - 1874, + 2143, { "object": [ - 1888, + 2157, "player_assists_insert_input!" ], "on_conflict": [ - 1894 + 2163 ] } ], "insert_player_damages": [ - 1954, + 2223, { "objects": [ - 1949, + 2218, "[player_damages_insert_input!]!" ], "on_conflict": [ - 1955 + 2224 ] } ], "insert_player_damages_one": [ - 1937, + 2206, { "object": [ - 1949, + 2218, "player_damages_insert_input!" ], "on_conflict": [ - 1955 + 2224 ] } ], "insert_player_elo": [ - 1988, + 2257, { "objects": [ - 1985, + 2254, "[player_elo_insert_input!]!" ], "on_conflict": [ - 1989 + 2258 ] } ], "insert_player_elo_one": [ - 1978, + 2247, { "object": [ - 1985, + 2254, "player_elo_insert_input!" ], "on_conflict": [ - 1989 + 2258 ] } ], "insert_player_faceit_rank_history": [ - 2022, + 2291, { "objects": [ - 2017, + 2286, "[player_faceit_rank_history_insert_input!]!" ], "on_conflict": [ - 2023 + 2292 ] } ], "insert_player_faceit_rank_history_one": [ - 2005, + 2274, { "object": [ - 2017, + 2286, "player_faceit_rank_history_insert_input!" ], "on_conflict": [ - 2023 + 2292 ] } ], "insert_player_flashes": [ - 2065, + 2334, { "objects": [ - 2060, + 2329, "[player_flashes_insert_input!]!" ], "on_conflict": [ - 2066 + 2335 ] } ], "insert_player_flashes_one": [ - 2046, + 2315, { "object": [ - 2060, + 2329, "player_flashes_insert_input!" ], "on_conflict": [ - 2066 + 2335 ] } ], "insert_player_kills": [ - 2151, + 2420, { "objects": [ - 2146, + 2415, "[player_kills_insert_input!]!" ], "on_conflict": [ - 2152 + 2421 ] } ], "insert_player_kills_by_weapon": [ - 2120, + 2389, { "objects": [ - 2115, + 2384, "[player_kills_by_weapon_insert_input!]!" ], "on_conflict": [ - 2121 + 2390 ] } ], "insert_player_kills_by_weapon_one": [ - 2103, + 2372, { "object": [ - 2115, + 2384, "player_kills_by_weapon_insert_input!" ], "on_conflict": [ - 2121 + 2390 ] } ], "insert_player_kills_one": [ - 2091, + 2360, { "object": [ - 2146, + 2415, "player_kills_insert_input!" ], "on_conflict": [ - 2152 + 2421 ] } ], "insert_player_leaderboard_rank": [ - 2186, + 2455, { "objects": [ - 2183, + 2452, "[player_leaderboard_rank_insert_input!]!" ] } ], "insert_player_leaderboard_rank_one": [ - 2177, + 2446, { "object": [ - 2183, + 2452, "player_leaderboard_rank_insert_input!" ] } ], "insert_player_match_map_stats": [ - 2217, + 2486, { "objects": [ - 2212, + 2481, "[player_match_map_stats_insert_input!]!" ], "on_conflict": [ - 2218 + 2487 ] } ], "insert_player_match_map_stats_one": [ - 2200, + 2469, { "object": [ - 2212, + 2481, "player_match_map_stats_insert_input!" ], "on_conflict": [ - 2218 + 2487 ] } ], "insert_player_objectives": [ - 2309, + 2578, { "objects": [ - 2304, + 2573, "[player_objectives_insert_input!]!" ], "on_conflict": [ - 2310 + 2579 ] } ], "insert_player_objectives_one": [ - 2292, + 2561, { "object": [ - 2304, + 2573, "player_objectives_insert_input!" ], "on_conflict": [ - 2310 + 2579 ] } ], "insert_player_premier_rank_history": [ - 2368, + 2637, { "objects": [ - 2363, + 2632, "[player_premier_rank_history_insert_input!]!" ], "on_conflict": [ - 2369 + 2638 ] } ], "insert_player_premier_rank_history_one": [ - 2351, + 2620, { "object": [ - 2363, + 2632, "player_premier_rank_history_insert_input!" ], "on_conflict": [ - 2369 + 2638 ] } ], "insert_player_sanctions": [ - 2409, + 2678, { "objects": [ - 2404, + 2673, "[player_sanctions_insert_input!]!" ], "on_conflict": [ - 2410 + 2679 ] } ], "insert_player_sanctions_one": [ - 2392, + 2661, { "object": [ - 2404, + 2673, "player_sanctions_insert_input!" ], "on_conflict": [ - 2410 + 2679 ] } ], "insert_player_stats": [ - 2443, + 2712, { "objects": [ - 2440, + 2709, "[player_stats_insert_input!]!" ], "on_conflict": [ - 2445 + 2714 ] } ], "insert_player_stats_one": [ - 2433, + 2702, { "object": [ - 2440, + 2709, "player_stats_insert_input!" ], "on_conflict": [ - 2445 + 2714 ] } ], "insert_player_steam_match_auth": [ - 2471, + 2740, { "objects": [ - 2468, + 2737, "[player_steam_match_auth_insert_input!]!" ], "on_conflict": [ - 2472 + 2741 ] } ], "insert_player_steam_match_auth_one": [ - 2461, + 2730, { "object": [ - 2468, + 2737, "player_steam_match_auth_insert_input!" ], "on_conflict": [ - 2472 + 2741 ] } ], "insert_player_unused_utility": [ - 2505, + 2774, { "objects": [ - 2500, + 2769, "[player_unused_utility_insert_input!]!" ], "on_conflict": [ - 2506 + 2775 ] } ], "insert_player_unused_utility_one": [ - 2488, + 2757, { "object": [ - 2500, + 2769, "player_unused_utility_insert_input!" ], "on_conflict": [ - 2506 + 2775 ] } ], "insert_player_utility": [ - 2546, + 2815, { "objects": [ - 2541, + 2810, "[player_utility_insert_input!]!" ], "on_conflict": [ - 2547 + 2816 ] } ], "insert_player_utility_one": [ - 2529, + 2798, { "object": [ - 2541, + 2810, "player_utility_insert_input!" ], "on_conflict": [ - 2547 + 2816 ] } ], "insert_players": [ - 2613, + 2882, { "objects": [ - 2610, + 2879, "[players_insert_input!]!" ], "on_conflict": [ - 2615 + 2884 ] } ], "insert_players_one": [ - 2603, + 2872, { "object": [ - 2610, + 2879, "players_insert_input!" ], "on_conflict": [ - 2615 + 2884 ] } ], "insert_plugin_versions": [ - 2641, + 2910, { "objects": [ - 2638, + 2907, "[plugin_versions_insert_input!]!" ], "on_conflict": [ - 2642 + 2911 ] } ], "insert_plugin_versions_one": [ - 2631, + 2900, { "object": [ - 2638, + 2907, "plugin_versions_insert_input!" ], "on_conflict": [ - 2642 + 2911 ] } ], "insert_server_regions": [ - 2668, + 2937, { "objects": [ - 2665, + 2934, "[server_regions_insert_input!]!" ], "on_conflict": [ - 2670 + 2939 ] } ], "insert_server_regions_one": [ - 2659, + 2928, { "object": [ - 2665, + 2934, "server_regions_insert_input!" ], "on_conflict": [ - 2670 + 2939 ] } ], "insert_servers": [ - 2705, + 2974, { "objects": [ - 2700, + 2969, "[servers_insert_input!]!" ], "on_conflict": [ - 2707 + 2976 ] } ], "insert_servers_one": [ - 2686, + 2955, { "object": [ - 2700, + 2969, "servers_insert_input!" ], "on_conflict": [ - 2707 + 2976 ] } ], "insert_settings": [ - 2740, + 3009, { "objects": [ - 2737, + 3006, "[settings_insert_input!]!" ], "on_conflict": [ - 2741 + 3010 ] } ], "insert_settings_one": [ - 2732, + 3001, { "object": [ - 2737, + 3006, "settings_insert_input!" ], "on_conflict": [ - 2741 + 3010 ] } ], "insert_steam_account_claims": [ - 2764, + 3033, { "objects": [ - 2759, + 3028, "[steam_account_claims_insert_input!]!" ], "on_conflict": [ - 2765 + 3034 ] } ], "insert_steam_account_claims_one": [ - 2750, + 3019, { "object": [ - 2759, + 3028, "steam_account_claims_insert_input!" ], "on_conflict": [ - 2765 + 3034 ] } ], "insert_steam_accounts": [ - 2782, + 3051, { "objects": [ - 2779, + 3048, "[steam_accounts_insert_input!]!" ], "on_conflict": [ - 2784 + 3053 ] } ], "insert_steam_accounts_one": [ - 2774, + 3043, { "object": [ - 2779, + 3048, "steam_accounts_insert_input!" ], "on_conflict": [ - 2784 + 3053 ] } ], "insert_team_invites": [ - 2810, + 3079, { "objects": [ - 2805, + 3074, "[team_invites_insert_input!]!" ], "on_conflict": [ - 2811 + 3080 ] } ], "insert_team_invites_one": [ - 2793, + 3062, { "object": [ - 2805, + 3074, "team_invites_insert_input!" ], "on_conflict": [ - 2811 + 3080 ] } ], "insert_team_roster": [ - 2853, + 3122, { "objects": [ - 2848, + 3117, "[team_roster_insert_input!]!" ], "on_conflict": [ - 2854 + 3123 ] } ], "insert_team_roster_one": [ - 2834, + 3103, { "object": [ - 2848, + 3117, "team_roster_insert_input!" ], "on_conflict": [ - 2854 + 3123 ] } ], "insert_teams": [ - 2896, + 3165, { "objects": [ - 2891, + 3160, "[teams_insert_input!]!" ], "on_conflict": [ - 2898 + 3167 ] } ], "insert_teams_one": [ - 2879, + 3148, { "object": [ - 2891, + 3160, "teams_insert_input!" ], "on_conflict": [ - 2898 + 3167 ] } ], "insert_tournament_brackets": [ - 2943, + 3212, { "objects": [ - 2938, + 3207, "[tournament_brackets_insert_input!]!" ], "on_conflict": [ - 2945 + 3214 ] } ], "insert_tournament_brackets_one": [ - 2924, + 3193, { "object": [ - 2938, + 3207, "tournament_brackets_insert_input!" ], "on_conflict": [ - 2945 + 3214 ] } ], "insert_tournament_organizers": [ - 2987, + 3256, { "objects": [ - 2982, + 3251, "[tournament_organizers_insert_input!]!" ], "on_conflict": [ - 2988 + 3257 ] } ], "insert_tournament_organizers_one": [ - 2970, + 3239, { "object": [ - 2982, + 3251, "tournament_organizers_insert_input!" ], "on_conflict": [ - 2988 + 3257 ] } ], "insert_tournament_stages": [ - 3034, + 3303, { "objects": [ - 3029, + 3298, "[tournament_stages_insert_input!]!" ], "on_conflict": [ - 3036 + 3305 ] } ], "insert_tournament_stages_one": [ - 3011, + 3280, { "object": [ - 3029, + 3298, "tournament_stages_insert_input!" ], "on_conflict": [ - 3036 + 3305 ] } ], "insert_tournament_team_invites": [ - 3079, + 3348, { "objects": [ - 3074, + 3343, "[tournament_team_invites_insert_input!]!" ], "on_conflict": [ - 3080 + 3349 ] } ], "insert_tournament_team_invites_one": [ - 3062, + 3331, { "object": [ - 3074, + 3343, "tournament_team_invites_insert_input!" ], "on_conflict": [ - 3080 + 3349 ] } ], "insert_tournament_team_roster": [ - 3120, + 3389, { "objects": [ - 3115, + 3384, "[tournament_team_roster_insert_input!]!" ], "on_conflict": [ - 3121 + 3390 ] } ], "insert_tournament_team_roster_one": [ - 3103, + 3372, { "object": [ - 3115, + 3384, "tournament_team_roster_insert_input!" ], "on_conflict": [ - 3121 + 3390 ] } ], "insert_tournament_teams": [ - 3161, + 3430, { "objects": [ - 3156, + 3425, "[tournament_teams_insert_input!]!" ], "on_conflict": [ - 3163 + 3432 ] } ], "insert_tournament_teams_one": [ - 3144, + 3413, { "object": [ - 3156, + 3425, "tournament_teams_insert_input!" ], "on_conflict": [ - 3163 + 3432 ] } ], "insert_tournament_trophies": [ - 3205, + 3474, { "objects": [ - 3200, + 3469, "[tournament_trophies_insert_input!]!" ], "on_conflict": [ - 3206 + 3475 ] } ], "insert_tournament_trophies_one": [ - 3186, + 3455, { "object": [ - 3200, + 3469, "tournament_trophies_insert_input!" ], "on_conflict": [ - 3206 + 3475 ] } ], "insert_tournament_trophy_configs": [ - 3248, + 3517, { "objects": [ - 3243, + 3512, "[tournament_trophy_configs_insert_input!]!" ], "on_conflict": [ - 3250 + 3519 ] } ], "insert_tournament_trophy_configs_one": [ - 3231, + 3500, { "object": [ - 3243, + 3512, "tournament_trophy_configs_insert_input!" ], "on_conflict": [ - 3250 + 3519 ] } ], "insert_tournaments": [ - 3292, + 3561, { "objects": [ - 3287, + 3556, "[tournaments_insert_input!]!" ], "on_conflict": [ - 3294 + 3563 ] } ], "insert_tournaments_one": [ - 3273, + 3542, { "object": [ - 3287, + 3556, "tournaments_insert_input!" ], "on_conflict": [ - 3294 + 3563 ] } ], "insert_v_match_captains": [ - 3348, + 3617, { "objects": [ - 3345, + 3614, "[v_match_captains_insert_input!]!" ] } ], "insert_v_match_captains_one": [ - 3339, + 3608, { "object": [ - 3345, + 3614, "v_match_captains_insert_input!" ] } ], "insert_v_match_map_backup_rounds": [ - 3459, + 3728, { "objects": [ - 3456, + 3725, "[v_match_map_backup_rounds_insert_input!]!" ] } ], "insert_v_match_map_backup_rounds_one": [ - 3450, + 3719, { "object": [ - 3456, + 3725, "v_match_map_backup_rounds_insert_input!" ] } ], "insert_v_player_match_map_hltv": [ - 3681, + 3950, { "objects": [ - 3676, + 3945, "[v_player_match_map_hltv_insert_input!]!" ] } ], "insert_v_player_match_map_hltv_one": [ - 3665, + 3934, { "object": [ - 3676, + 3945, "v_player_match_map_hltv_insert_input!" ] } ], "insert_v_pool_maps": [ - 3840, + 4109, { "objects": [ - 3835, + 4104, "[v_pool_maps_insert_input!]!" ] } ], "insert_v_pool_maps_one": [ - 3825, + 4094, { "object": [ - 3835, + 4104, "v_pool_maps_insert_input!" ] } ], "insert_v_team_stage_results": [ - 3894, + 4163, { "objects": [ - 3889, + 4158, "[v_team_stage_results_insert_input!]!" ], "on_conflict": [ - 3896 + 4165 ] } ], "insert_v_team_stage_results_one": [ - 3867, + 4136, { "object": [ - 3889, + 4158, "v_team_stage_results_insert_input!" ], "on_conflict": [ - 3896 + 4165 + ] + } + ], + "joinDraftGame": [ + 67, + { + "draftGameId": [ + 3588, + "uuid!" + ], + "inviteCode": [ + 64 + ] + } + ], + "joinDraftGameAsParty": [ + 67, + { + "draftGameId": [ + 3588, + "uuid!" + ], + "inviteCode": [ + 64 ] } ], "joinLineup": [ - 66, + 67, { "code": [ - 63 + 64 ], "lineup_id": [ - 63, + 64, "String!" ], "match_id": [ - 63, + 64, "String!" ] } ], "kickServerPlayer": [ - 36, + 37, { "reason": [ - 63 + 64 ], "serverId": [ - 63, + 64, "String!" ], "steam_id": [ - 63, + 64, "String!" ] } ], "leaveLineup": [ - 66, + 67, { "match_id": [ - 63, + 64, "String!" ] } ], "linkSteamMatchHistory": [ - 59, + 60, { "auth_code": [ - 63, + 64, "String!" ], "share_code": [ - 63, + 64, "String!" ] } ], "loadFixtures": [ - 66 + 67 ], "logout": [ - 66 + 67 ], "moveServerItem": [ - 66, + 67, { "dest_path": [ - 63, + 64, "String!" ], "node_id": [ - 63, + 64, "String!" ], "server_id": [ - 63 + 64 ], "source_path": [ - 63, + 64, "String!" ] } ], "orphanedDemosScanResult": [ - 47 + 48 ], "pauseClipRenderBatch": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "pollSteamMatchHistory": [ - 60 + 61 ], "queueClipFromPreset": [ 13, { "fps": [ - 34 + 35 ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "preset": [ - 63, + 64, "String!" ], "resolution": [ - 63 + 64 ], "target_name": [ - 63 + 64 ], "target_steam_id": [ - 63, + 64, "String!" ], "title": [ - 63 + 64 ] } ], "randomizeTeams": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "rebootMatchServer": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "recalculate_tournament_trophies": [ - 3186, + 3455, { "args": [ - 2658, + 2927, "recalculate_tournament_trophies_args!" ], "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "reconnectLive": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "refreshAllPlayers": [ - 66 + 67 ], "refreshFaceitRank": [ - 66, + 67, { "steam_id": [ - 63, + 64, "String!" ] } ], "refreshLiveHud": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "registerName": [ - 66, + 67, { "name": [ - 63, + 64, "String!" ] } ], "removeFixtures": [ - 66 + 67 ], "renameServerItem": [ - 66, + 67, { "new_path": [ - 63, + 64, "String!" ], "node_id": [ - 63, + 64, "String!" ], "old_path": [ - 63, + 64, "String!" ], "server_id": [ - 63 + 64 ] } ], "reparseAllDemos": [ - 53 + 54 ], "reparseAllDemosStatus": [ - 54 + 55 ], "reparseDemo": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "reparseMatchDemos": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "requestNameChange": [ - 66, + 67, { "name": [ - 63, + 64, "String!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "requeueClipRender": [ - 66, + 67, { "job_id": [ - 3319, + 3588, "uuid!" ] } ], + "rescanTldrNews": [ + 67 + ], "restartService": [ - 66, + 67, { "service": [ - 63, + 64, "String!" ] } ], "resumeClipRenderBatch": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "retryClipRenderBatch": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "only_failed": [ @@ -111354,153 +117216,153 @@ export default { } ], "retryPendingMatchImport": [ - 48, + 49, { "valve_match_id": [ - 63, + 64, "String!" ] } ], "sanctionServerPlayer": [ - 55, + 56, { "duration": [ - 25 + 26 ], "reason": [ - 63 + 64 ], "serverId": [ - 63 + 64 ], "steam_id": [ - 63, + 64, "String!" ], "type": [ - 63, + 64, "String!" ] } ], "scanOrphanedDemos": [ - 56 + 57 ], "scanSteamBans": [ - 66 + 67 ], "scheduleMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922 + 3191 ] } ], "setGameNodeSchedulingState": [ - 66, + 67, { "enabled": [ 3, "Boolean!" ], "game_server_node_id": [ - 63, + 64, "String!" ] } ], "setHudMode": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "mode": [ - 63, + 64, "String!" ] } ], "setMapWinner": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "winning_lineup_id": [ - 3319, + 3588, "uuid!" ] } ], "setMatchWinner": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "winning_lineup_id": [ - 3319, + 3588, "uuid!" ] } ], "setupGameServer": [ - 58 + 59 ], "skipShaders": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specAutodirector": [ - 66, + 67, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specClick": [ - 66, + 67, { "button": [ - 63, + 64, "String!" ], "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specHud": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "visible": [ @@ -111510,41 +117372,41 @@ export default { } ], "specHudSides": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specJump": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specPlayer": [ - 66, + 67, { "accountid": [ - 34, + 35, "Int!" ], "match_id": [ - 3319, + 3588, "uuid!" ] } ], "specScoreboard": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "show": [ @@ -111554,12977 +117416,13936 @@ export default { } ], "specSlot": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "slot": [ - 34, + 35, "Int!" ] } ], "specXray": [ - 66, + 67, { "enabled": [ 3, "Boolean!" ], "match_id": [ - 3319, + 3588, "uuid!" ] } ], "startLive": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "mode": [ - 63, + 64, "String!" ] } ], "startMatch": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ], "server_id": [ - 3319 + 3588 ] } ], "stopGpuSession": [ - 66, + 67, { "game_server_node_id": [ - 3319, + 3588, "uuid!" ] } ], "stopLive": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "stopWatchDemo": [ - 66, + 67, { "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "swapLineups": [ - 66, + 67, { "match_id": [ - 3319, + 3588, "uuid!" ] } ], "switchLineup": [ - 66, + 67, { "match_id": [ - 63, + 64, "String!" ] } ], "switchLiveMatch": [ - 66, + 67, { "from_match_id": [ - 3319, + 3588, "uuid!" ], "mode": [ - 63, + 64, "String!" ], "to_match_id": [ - 3319, + 3588, "uuid!" ] } ], "syncSteamFriends": [ - 66 + 67 ], "testFaceitIntegration": [ - 20 + 21 ], "testUpload": [ - 71 + 72 ], "unlinkDiscord": [ - 66 + 67 ], "unlinkSteamMatchHistory": [ - 66 + 67 ], "unsanctionServerPlayer": [ - 55, + 56, { "serverId": [ - 63 + 64 ], "steam_id": [ - 63, + 64, "String!" ], "type": [ - 63, + 64, "String!" ] } ], "updateClip": [ - 66, + 67, { "clip_id": [ - 3319, + 3588, "uuid!" ], "target_steam_id": [ - 63 + 64 ], "title": [ - 63 + 64 ], "visibility": [ - 63 + 64 ] } ], "updateCs": [ - 66, + 67, { "game": [ - 63 + 64 ], "game_server_node_id": [ - 3319 + 3588 + ] + } + ], + "updateDraftGame": [ + 67, + { + "draftGameId": [ + 3588, + "uuid!" + ], + "settings": [ + 1188, + "jsonb!" ] } ], "updateServices": [ - 66 + 67 ], "update__map_pool": [ - 84, + 85, { "_set": [ - 89 + 90 ], "where": [ - 79, + 80, "_map_pool_bool_exp!" ] } ], "update__map_pool_by_pk": [ - 76, + 77, { "_set": [ - 89 + 90 ], "pk_columns": [ - 87, + 88, "_map_pool_pk_columns_input!" ] } ], "update__map_pool_many": [ - 84, + 85, { "updates": [ - 93, + 94, "[_map_pool_updates!]!" ] } ], "update_abandoned_matches": [ - 111, + 112, { "_inc": [ - 105 + 106 ], "_set": [ - 116 + 117 ], "where": [ - 103, + 104, "abandoned_matches_bool_exp!" ] } ], "update_abandoned_matches_by_pk": [ - 94, + 95, { "_inc": [ - 105 + 106 ], "_set": [ - 116 + 117 ], "pk_columns": [ - 114, + 115, "abandoned_matches_pk_columns_input!" ] } ], "update_abandoned_matches_many": [ - 111, + 112, { "updates": [ - 128, + 129, "[abandoned_matches_updates!]!" ] } ], "update_api_keys": [ - 145, + 146, { "_inc": [ - 141 + 142 ], "_set": [ - 150 + 151 ], "where": [ - 139, + 140, "api_keys_bool_exp!" ] } ], "update_api_keys_by_pk": [ - 135, + 136, { "_inc": [ - 141 + 142 ], "_set": [ - 150 + 151 ], "pk_columns": [ - 148, + 149, "api_keys_pk_columns_input!" ] } ], "update_api_keys_many": [ - 145, + 146, { "updates": [ - 158, + 159, "[api_keys_updates!]!" ] } ], "update_clip_render_jobs": [ - 189, + 190, { "_append": [ - 174 + 175 ], "_delete_at_path": [ - 180 + 181 ], "_delete_elem": [ - 181 + 182 ], "_delete_key": [ - 182 + 183 ], "_inc": [ - 183 + 184 ], "_prepend": [ - 193 + 194 ], "_set": [ - 197 + 198 ], "where": [ - 178, + 179, "clip_render_jobs_bool_exp!" ] } ], "update_clip_render_jobs_by_pk": [ - 166, + 167, { "_append": [ - 174 + 175 ], "_delete_at_path": [ - 180 + 181 ], "_delete_elem": [ - 181 + 182 ], "_delete_key": [ - 182 + 183 ], "_inc": [ - 183 + 184 ], "_prepend": [ - 193 + 194 ], "_set": [ - 197 + 198 ], "pk_columns": [ - 192, + 193, "clip_render_jobs_pk_columns_input!" ] } ], "update_clip_render_jobs_many": [ - 189, + 190, { "updates": [ - 209, + 210, "[clip_render_jobs_updates!]!" ] } ], "update_db_backups": [ - 227, + 228, { "_inc": [ - 223 + 224 ], "_set": [ - 232 + 233 ], "where": [ - 221, + 222, "db_backups_bool_exp!" ] } ], "update_db_backups_by_pk": [ - 217, + 218, { "_inc": [ - 223 + 224 ], "_set": [ - 232 + 233 ], "pk_columns": [ - 230, + 231, "db_backups_pk_columns_input!" ] } ], "update_db_backups_many": [ - 227, + 228, { "updates": [ - 240, + 241, "[db_backups_updates!]!" ] } ], + "update_draft_game_picks": [ + 264, + { + "_inc": [ + 258 + ], + "_set": [ + 271 + ], + "where": [ + 256, + "draft_game_picks_bool_exp!" + ] + } + ], + "update_draft_game_picks_by_pk": [ + 245, + { + "_inc": [ + 258 + ], + "_set": [ + 271 + ], + "pk_columns": [ + 267, + "draft_game_picks_pk_columns_input!" + ] + } + ], + "update_draft_game_picks_many": [ + 264, + { + "updates": [ + 283, + "[draft_game_picks_updates!]!" + ] + } + ], + "update_draft_game_players": [ + 309, + { + "_inc": [ + 303 + ], + "_set": [ + 316 + ], + "where": [ + 301, + "draft_game_players_bool_exp!" + ] + } + ], + "update_draft_game_players_by_pk": [ + 290, + { + "_inc": [ + 303 + ], + "_set": [ + 316 + ], + "pk_columns": [ + 312, + "draft_game_players_pk_columns_input!" + ] + } + ], + "update_draft_game_players_many": [ + 309, + { + "updates": [ + 328, + "[draft_game_players_updates!]!" + ] + } + ], + "update_draft_games": [ + 354, + { + "_inc": [ + 348 + ], + "_set": [ + 362 + ], + "where": [ + 346, + "draft_games_bool_exp!" + ] + } + ], + "update_draft_games_by_pk": [ + 335, + { + "_inc": [ + 348 + ], + "_set": [ + 362 + ], + "pk_columns": [ + 358, + "draft_games_pk_columns_input!" + ] + } + ], + "update_draft_games_many": [ + 354, + { + "updates": [ + 374, + "[draft_games_updates!]!" + ] + } + ], "update_e_check_in_settings": [ - 254, + 391, { "_set": [ - 259 + 396 ], "where": [ - 247, + 384, "e_check_in_settings_bool_exp!" ] } ], "update_e_check_in_settings_by_pk": [ - 244, + 381, { "_set": [ - 259 + 396 ], "pk_columns": [ - 257, + 394, "e_check_in_settings_pk_columns_input!" ] } ], "update_e_check_in_settings_many": [ - 254, + 391, { "updates": [ - 263, + 400, "[e_check_in_settings_updates!]!" ] } ], + "update_e_draft_game_captain_selection": [ + 411, + { + "_set": [ + 417 + ], + "where": [ + 404, + "e_draft_game_captain_selection_bool_exp!" + ] + } + ], + "update_e_draft_game_captain_selection_by_pk": [ + 401, + { + "_set": [ + 417 + ], + "pk_columns": [ + 415, + "e_draft_game_captain_selection_pk_columns_input!" + ] + } + ], + "update_e_draft_game_captain_selection_many": [ + 411, + { + "updates": [ + 421, + "[e_draft_game_captain_selection_updates!]!" + ] + } + ], + "update_e_draft_game_draft_order": [ + 432, + { + "_set": [ + 438 + ], + "where": [ + 425, + "e_draft_game_draft_order_bool_exp!" + ] + } + ], + "update_e_draft_game_draft_order_by_pk": [ + 422, + { + "_set": [ + 438 + ], + "pk_columns": [ + 436, + "e_draft_game_draft_order_pk_columns_input!" + ] + } + ], + "update_e_draft_game_draft_order_many": [ + 432, + { + "updates": [ + 442, + "[e_draft_game_draft_order_updates!]!" + ] + } + ], + "update_e_draft_game_mode": [ + 453, + { + "_set": [ + 459 + ], + "where": [ + 446, + "e_draft_game_mode_bool_exp!" + ] + } + ], + "update_e_draft_game_mode_by_pk": [ + 443, + { + "_set": [ + 459 + ], + "pk_columns": [ + 457, + "e_draft_game_mode_pk_columns_input!" + ] + } + ], + "update_e_draft_game_mode_many": [ + 453, + { + "updates": [ + 463, + "[e_draft_game_mode_updates!]!" + ] + } + ], + "update_e_draft_game_player_status": [ + 474, + { + "_set": [ + 480 + ], + "where": [ + 467, + "e_draft_game_player_status_bool_exp!" + ] + } + ], + "update_e_draft_game_player_status_by_pk": [ + 464, + { + "_set": [ + 480 + ], + "pk_columns": [ + 478, + "e_draft_game_player_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_player_status_many": [ + 474, + { + "updates": [ + 484, + "[e_draft_game_player_status_updates!]!" + ] + } + ], + "update_e_draft_game_status": [ + 495, + { + "_set": [ + 501 + ], + "where": [ + 488, + "e_draft_game_status_bool_exp!" + ] + } + ], + "update_e_draft_game_status_by_pk": [ + 485, + { + "_set": [ + 501 + ], + "pk_columns": [ + 499, + "e_draft_game_status_pk_columns_input!" + ] + } + ], + "update_e_draft_game_status_many": [ + 495, + { + "updates": [ + 505, + "[e_draft_game_status_updates!]!" + ] + } + ], "update_e_friend_status": [ - 274, + 516, { "_set": [ - 280 + 522 ], "where": [ - 267, + 509, "e_friend_status_bool_exp!" ] } ], "update_e_friend_status_by_pk": [ - 264, + 506, { "_set": [ - 280 + 522 ], "pk_columns": [ - 278, + 520, "e_friend_status_pk_columns_input!" ] } ], "update_e_friend_status_many": [ - 274, + 516, { "updates": [ - 284, + 526, "[e_friend_status_updates!]!" ] } ], "update_e_game_cfg_types": [ - 295, + 537, { "_set": [ - 300 + 542 ], "where": [ - 288, + 530, "e_game_cfg_types_bool_exp!" ] } ], "update_e_game_cfg_types_by_pk": [ - 285, + 527, { "_set": [ - 300 + 542 ], "pk_columns": [ - 298, + 540, "e_game_cfg_types_pk_columns_input!" ] } ], "update_e_game_cfg_types_many": [ - 295, + 537, { "updates": [ - 304, + 546, "[e_game_cfg_types_updates!]!" ] } ], "update_e_game_server_node_statuses": [ - 315, + 557, { "_set": [ - 321 + 563 ], "where": [ - 308, + 550, "e_game_server_node_statuses_bool_exp!" ] } ], "update_e_game_server_node_statuses_by_pk": [ - 305, + 547, { "_set": [ - 321 + 563 ], "pk_columns": [ - 319, + 561, "e_game_server_node_statuses_pk_columns_input!" ] } ], "update_e_game_server_node_statuses_many": [ - 315, + 557, { "updates": [ - 325, + 567, "[e_game_server_node_statuses_updates!]!" ] } ], "update_e_lobby_access": [ - 336, + 578, { "_set": [ - 342 + 584 ], "where": [ - 329, + 571, "e_lobby_access_bool_exp!" ] } ], "update_e_lobby_access_by_pk": [ - 326, + 568, { "_set": [ - 342 + 584 ], "pk_columns": [ - 340, + 582, "e_lobby_access_pk_columns_input!" ] } ], "update_e_lobby_access_many": [ - 336, + 578, { "updates": [ - 346, + 588, "[e_lobby_access_updates!]!" ] } ], "update_e_lobby_player_status": [ - 357, + 599, { "_set": [ - 362 + 604 ], "where": [ - 350, + 592, "e_lobby_player_status_bool_exp!" ] } ], "update_e_lobby_player_status_by_pk": [ - 347, + 589, { "_set": [ - 362 + 604 ], "pk_columns": [ - 360, + 602, "e_lobby_player_status_pk_columns_input!" ] } ], "update_e_lobby_player_status_many": [ - 357, + 599, { "updates": [ - 366, + 608, "[e_lobby_player_status_updates!]!" ] } ], "update_e_map_pool_types": [ - 377, + 619, { "_set": [ - 383 + 625 ], "where": [ - 370, + 612, "e_map_pool_types_bool_exp!" ] } ], "update_e_map_pool_types_by_pk": [ - 367, + 609, { "_set": [ - 383 + 625 ], "pk_columns": [ - 381, + 623, "e_map_pool_types_pk_columns_input!" ] } ], "update_e_map_pool_types_many": [ - 377, + 619, { "updates": [ - 387, + 629, "[e_map_pool_types_updates!]!" ] } ], "update_e_match_clip_visibility": [ - 398, + 640, { "_set": [ - 403 + 645 ], "where": [ - 391, + 633, "e_match_clip_visibility_bool_exp!" ] } ], "update_e_match_clip_visibility_by_pk": [ - 388, + 630, { "_set": [ - 403 + 645 ], "pk_columns": [ - 401, + 643, "e_match_clip_visibility_pk_columns_input!" ] } ], "update_e_match_clip_visibility_many": [ - 398, + 640, { "updates": [ - 407, + 649, "[e_match_clip_visibility_updates!]!" ] } ], "update_e_match_map_status": [ - 418, + 660, { "_set": [ - 424 + 666 ], "where": [ - 411, + 653, "e_match_map_status_bool_exp!" ] } ], "update_e_match_map_status_by_pk": [ - 408, + 650, { "_set": [ - 424 + 666 ], "pk_columns": [ - 422, + 664, "e_match_map_status_pk_columns_input!" ] } ], "update_e_match_map_status_many": [ - 418, + 660, { "updates": [ - 428, + 670, "[e_match_map_status_updates!]!" ] } ], "update_e_match_mode": [ - 439, + 681, { "_set": [ - 444 + 686 ], "where": [ - 432, + 674, "e_match_mode_bool_exp!" ] } ], "update_e_match_mode_by_pk": [ - 429, + 671, { "_set": [ - 444 + 686 ], "pk_columns": [ - 442, + 684, "e_match_mode_pk_columns_input!" ] } ], "update_e_match_mode_many": [ - 439, + 681, { "updates": [ - 448, + 690, "[e_match_mode_updates!]!" ] } ], "update_e_match_status": [ - 459, + 701, { "_set": [ - 465 + 707 ], "where": [ - 452, + 694, "e_match_status_bool_exp!" ] } ], "update_e_match_status_by_pk": [ - 449, + 691, { "_set": [ - 465 + 707 ], "pk_columns": [ - 463, + 705, "e_match_status_pk_columns_input!" ] } ], "update_e_match_status_many": [ - 459, + 701, { "updates": [ - 469, + 711, "[e_match_status_updates!]!" ] } ], "update_e_match_types": [ - 480, + 722, { "_set": [ - 486 + 728 ], "where": [ - 473, + 715, "e_match_types_bool_exp!" ] } ], "update_e_match_types_by_pk": [ - 470, + 712, { "_set": [ - 486 + 728 ], "pk_columns": [ - 484, + 726, "e_match_types_pk_columns_input!" ] } ], "update_e_match_types_many": [ - 480, + 722, { "updates": [ - 490, + 732, "[e_match_types_updates!]!" ] } ], "update_e_notification_types": [ - 501, + 743, { "_set": [ - 506 + 748 ], "where": [ - 494, + 736, "e_notification_types_bool_exp!" ] } ], "update_e_notification_types_by_pk": [ - 491, + 733, { "_set": [ - 506 + 748 ], "pk_columns": [ - 504, + 746, "e_notification_types_pk_columns_input!" ] } ], "update_e_notification_types_many": [ - 501, + 743, { "updates": [ - 510, + 752, "[e_notification_types_updates!]!" ] } ], "update_e_objective_types": [ - 521, + 763, { "_set": [ - 526 + 768 ], "where": [ - 514, + 756, "e_objective_types_bool_exp!" ] } ], "update_e_objective_types_by_pk": [ - 511, + 753, { "_set": [ - 526 + 768 ], "pk_columns": [ - 524, + 766, "e_objective_types_pk_columns_input!" ] } ], "update_e_objective_types_many": [ - 521, + 763, { "updates": [ - 530, + 772, "[e_objective_types_updates!]!" ] } ], "update_e_player_roles": [ - 541, + 783, { "_set": [ - 546 + 788 ], "where": [ - 534, + 776, "e_player_roles_bool_exp!" ] } ], "update_e_player_roles_by_pk": [ - 531, + 773, { "_set": [ - 546 + 788 ], "pk_columns": [ - 544, + 786, "e_player_roles_pk_columns_input!" ] } ], "update_e_player_roles_many": [ - 541, + 783, { "updates": [ - 550, + 792, "[e_player_roles_updates!]!" ] } ], "update_e_ready_settings": [ - 561, + 803, { "_set": [ - 566 + 808 ], "where": [ - 554, + 796, "e_ready_settings_bool_exp!" ] } ], "update_e_ready_settings_by_pk": [ - 551, + 793, { "_set": [ - 566 + 808 ], "pk_columns": [ - 564, + 806, "e_ready_settings_pk_columns_input!" ] } ], "update_e_ready_settings_many": [ - 561, + 803, { "updates": [ - 570, + 812, "[e_ready_settings_updates!]!" ] } ], "update_e_sanction_types": [ - 581, + 823, { "_set": [ - 587 + 829 ], "where": [ - 574, + 816, "e_sanction_types_bool_exp!" ] } ], "update_e_sanction_types_by_pk": [ - 571, + 813, { "_set": [ - 587 + 829 ], "pk_columns": [ - 585, + 827, "e_sanction_types_pk_columns_input!" ] } ], "update_e_sanction_types_many": [ - 581, + 823, { "updates": [ - 591, + 833, "[e_sanction_types_updates!]!" ] } ], "update_e_server_types": [ - 602, + 844, { "_set": [ - 607 + 849 ], "where": [ - 595, + 837, "e_server_types_bool_exp!" ] } ], "update_e_server_types_by_pk": [ - 592, + 834, { "_set": [ - 607 + 849 ], "pk_columns": [ - 605, + 847, "e_server_types_pk_columns_input!" ] } ], "update_e_server_types_many": [ - 602, + 844, { "updates": [ - 611, + 853, "[e_server_types_updates!]!" ] } ], "update_e_sides": [ - 622, + 864, { "_set": [ - 627 + 869 ], "where": [ - 615, + 857, "e_sides_bool_exp!" ] } ], "update_e_sides_by_pk": [ - 612, + 854, { "_set": [ - 627 + 869 ], "pk_columns": [ - 625, + 867, "e_sides_pk_columns_input!" ] } ], "update_e_sides_many": [ - 622, + 864, { "updates": [ - 631, + 873, "[e_sides_updates!]!" ] } ], "update_e_team_roles": [ - 642, + 884, { "_set": [ - 648 + 890 ], "where": [ - 635, + 877, "e_team_roles_bool_exp!" ] } ], "update_e_team_roles_by_pk": [ - 632, + 874, { "_set": [ - 648 + 890 ], "pk_columns": [ - 646, + 888, "e_team_roles_pk_columns_input!" ] } ], "update_e_team_roles_many": [ - 642, + 884, { "updates": [ - 652, + 894, "[e_team_roles_updates!]!" ] } ], "update_e_team_roster_statuses": [ - 663, + 905, { "_set": [ - 668 + 910 ], "where": [ - 656, + 898, "e_team_roster_statuses_bool_exp!" ] } ], "update_e_team_roster_statuses_by_pk": [ - 653, + 895, { "_set": [ - 668 + 910 ], "pk_columns": [ - 666, + 908, "e_team_roster_statuses_pk_columns_input!" ] } ], "update_e_team_roster_statuses_many": [ - 663, + 905, { "updates": [ - 672, + 914, "[e_team_roster_statuses_updates!]!" ] } ], "update_e_timeout_settings": [ - 683, + 925, { "_set": [ - 688 + 930 ], "where": [ - 676, + 918, "e_timeout_settings_bool_exp!" ] } ], "update_e_timeout_settings_by_pk": [ - 673, + 915, { "_set": [ - 688 + 930 ], "pk_columns": [ - 686, + 928, "e_timeout_settings_pk_columns_input!" ] } ], "update_e_timeout_settings_many": [ - 683, + 925, { "updates": [ - 692, + 934, "[e_timeout_settings_updates!]!" ] } ], "update_e_tournament_stage_types": [ - 703, + 945, { "_set": [ - 709 + 951 ], "where": [ - 696, + 938, "e_tournament_stage_types_bool_exp!" ] } ], "update_e_tournament_stage_types_by_pk": [ - 693, + 935, { "_set": [ - 709 + 951 ], "pk_columns": [ - 707, + 949, "e_tournament_stage_types_pk_columns_input!" ] } ], "update_e_tournament_stage_types_many": [ - 703, + 945, { "updates": [ - 713, + 955, "[e_tournament_stage_types_updates!]!" ] } ], "update_e_tournament_status": [ - 724, + 966, { "_set": [ - 730 + 972 ], "where": [ - 717, + 959, "e_tournament_status_bool_exp!" ] } ], "update_e_tournament_status_by_pk": [ - 714, + 956, { "_set": [ - 730 + 972 ], "pk_columns": [ - 728, + 970, "e_tournament_status_pk_columns_input!" ] } ], "update_e_tournament_status_many": [ - 724, + 966, { "updates": [ - 734, + 976, "[e_tournament_status_updates!]!" ] } ], "update_e_utility_types": [ - 745, + 987, { "_set": [ - 750 + 992 ], "where": [ - 738, + 980, "e_utility_types_bool_exp!" ] } ], "update_e_utility_types_by_pk": [ - 735, + 977, { "_set": [ - 750 + 992 ], "pk_columns": [ - 748, + 990, "e_utility_types_pk_columns_input!" ] } ], "update_e_utility_types_many": [ - 745, + 987, { "updates": [ - 754, + 996, "[e_utility_types_updates!]!" ] } ], "update_e_veto_pick_types": [ - 765, + 1007, { "_set": [ - 770 + 1012 ], "where": [ - 758, + 1000, "e_veto_pick_types_bool_exp!" ] } ], "update_e_veto_pick_types_by_pk": [ - 755, + 997, { "_set": [ - 770 + 1012 ], "pk_columns": [ - 768, + 1010, "e_veto_pick_types_pk_columns_input!" ] } ], "update_e_veto_pick_types_many": [ - 765, + 1007, { "updates": [ - 774, + 1016, "[e_veto_pick_types_updates!]!" ] } ], "update_e_winning_reasons": [ - 785, + 1027, { "_set": [ - 790 + 1032 ], "where": [ - 778, + 1020, "e_winning_reasons_bool_exp!" ] } ], "update_e_winning_reasons_by_pk": [ - 775, + 1017, { "_set": [ - 790 + 1032 ], "pk_columns": [ - 788, + 1030, "e_winning_reasons_pk_columns_input!" ] } ], "update_e_winning_reasons_many": [ - 785, + 1027, { "updates": [ - 794, + 1036, "[e_winning_reasons_updates!]!" ] } ], "update_friends": [ - 807, + 1049, { "_inc": [ - 803 + 1045 ], "_set": [ - 812 + 1054 ], "where": [ - 801, + 1043, "friends_bool_exp!" ] } ], "update_friends_by_pk": [ - 797, + 1039, { "_inc": [ - 803 + 1045 ], "_set": [ - 812 + 1054 ], "pk_columns": [ - 810, + 1052, "friends_pk_columns_input!" ] } ], "update_friends_many": [ - 807, + 1049, { "updates": [ - 820, + 1062, "[friends_updates!]!" ] } ], "update_game_server_nodes": [ - 847, + 1089, { "_append": [ - 832 + 1074 ], "_delete_at_path": [ - 838 + 1080 ], "_delete_elem": [ - 839 + 1081 ], "_delete_key": [ - 840 + 1082 ], "_inc": [ - 841 + 1083 ], "_prepend": [ - 852 + 1094 ], "_set": [ - 856 + 1098 ], "where": [ - 836, + 1078, "game_server_nodes_bool_exp!" ] } ], "update_game_server_nodes_by_pk": [ - 824, + 1066, { "_append": [ - 832 + 1074 ], "_delete_at_path": [ - 838 + 1080 ], "_delete_elem": [ - 839 + 1081 ], "_delete_key": [ - 840 + 1082 ], "_inc": [ - 841 + 1083 ], "_prepend": [ - 852 + 1094 ], "_set": [ - 856 + 1098 ], "pk_columns": [ - 851, + 1093, "game_server_nodes_pk_columns_input!" ] } ], "update_game_server_nodes_many": [ - 847, + 1089, { "updates": [ - 868, + 1110, "[game_server_nodes_updates!]!" ] } ], "update_game_versions": [ - 889, + 1131, { "_append": [ - 878 + 1120 ], "_delete_at_path": [ - 882 + 1124 ], "_delete_elem": [ - 883 + 1125 ], "_delete_key": [ - 884 + 1126 ], "_inc": [ - 885 + 1127 ], "_prepend": [ - 894 + 1136 ], "_set": [ - 896 + 1138 ], "where": [ - 880, + 1122, "game_versions_bool_exp!" ] } ], "update_game_versions_by_pk": [ - 875, + 1117, { "_append": [ - 878 + 1120 ], "_delete_at_path": [ - 882 + 1124 ], "_delete_elem": [ - 883 + 1125 ], "_delete_key": [ - 884 + 1126 ], "_inc": [ - 885 + 1127 ], "_prepend": [ - 894 + 1136 ], "_set": [ - 896 + 1138 ], "pk_columns": [ - 893, + 1135, "game_versions_pk_columns_input!" ] } ], "update_game_versions_many": [ - 889, + 1131, { "updates": [ - 904, + 1146, "[game_versions_updates!]!" ] } ], "update_gamedata_signature_validations": [ - 922, + 1164, { "_append": [ - 911 + 1153 ], "_delete_at_path": [ - 915 + 1157 ], "_delete_elem": [ - 916 + 1158 ], "_delete_key": [ - 917 + 1159 ], "_inc": [ - 918 + 1160 ], "_prepend": [ - 926 + 1168 ], "_set": [ - 928 + 1170 ], "where": [ - 913, + 1155, "gamedata_signature_validations_bool_exp!" ] } ], "update_gamedata_signature_validations_by_pk": [ - 908, + 1150, { "_append": [ - 911 + 1153 ], "_delete_at_path": [ - 915 + 1157 ], "_delete_elem": [ - 916 + 1158 ], "_delete_key": [ - 917 + 1159 ], "_inc": [ - 918 + 1160 ], "_prepend": [ - 926 + 1168 ], "_set": [ - 928 + 1170 ], "pk_columns": [ - 925, + 1167, "gamedata_signature_validations_pk_columns_input!" ] } ], "update_gamedata_signature_validations_many": [ - 922, + 1164, { "updates": [ - 936, + 1178, "[gamedata_signature_validations_updates!]!" ] } ], "update_leaderboard_entries": [ - 958, + 1200, { "_inc": [ - 954 + 1196 ], "_set": [ - 961 + 1203 ], "where": [ - 953, + 1195, "leaderboard_entries_bool_exp!" ] } ], "update_leaderboard_entries_many": [ - 958, + 1200, { "updates": [ - 968, + 1210, "[leaderboard_entries_updates!]!" ] } ], "update_lobbies": [ - 980, + 1222, { "_set": [ - 986 + 1228 ], "where": [ - 975, + 1217, "lobbies_bool_exp!" ] } ], "update_lobbies_by_pk": [ - 972, + 1214, { "_set": [ - 986 + 1228 ], "pk_columns": [ - 984, + 1226, "lobbies_pk_columns_input!" ] } ], "update_lobbies_many": [ - 980, + 1222, { "updates": [ - 990, + 1232, "[lobbies_updates!]!" ] } ], "update_lobby_players": [ - 1010, + 1252, { "_inc": [ - 1004 + 1246 ], "_set": [ - 1017 + 1259 ], "where": [ - 1002, + 1244, "lobby_players_bool_exp!" ] } ], "update_lobby_players_by_pk": [ - 991, + 1233, { "_inc": [ - 1004 + 1246 ], "_set": [ - 1017 + 1259 ], "pk_columns": [ - 1013, + 1255, "lobby_players_pk_columns_input!" ] } ], "update_lobby_players_many": [ - 1010, + 1252, { "updates": [ - 1029, + 1271, "[lobby_players_updates!]!" ] } ], "update_map_pools": [ - 1044, + 1286, { "_set": [ - 1050 + 1292 ], "where": [ - 1039, + 1281, "map_pools_bool_exp!" ] } ], "update_map_pools_by_pk": [ - 1036, + 1278, { "_set": [ - 1050 + 1292 ], "pk_columns": [ - 1048, + 1290, "map_pools_pk_columns_input!" ] } ], "update_map_pools_many": [ - 1044, + 1286, { "updates": [ - 1054, + 1296, "[map_pools_updates!]!" ] } ], "update_maps": [ - 1071, + 1313, { "_set": [ - 1079 + 1321 ], "where": [ - 1064, + 1306, "maps_bool_exp!" ] } ], "update_maps_by_pk": [ - 1055, + 1297, { "_set": [ - 1079 + 1321 ], "pk_columns": [ - 1075, + 1317, "maps_pk_columns_input!" ] } ], "update_maps_many": [ - 1071, + 1313, { "updates": [ - 1083, + 1325, "[maps_updates!]!" ] } ], "update_match_clips": [ - 1101, + 1343, { "_inc": [ - 1095 + 1337 ], "_set": [ - 1107 + 1349 ], "where": [ - 1093, + 1335, "match_clips_bool_exp!" ] } ], "update_match_clips_by_pk": [ - 1084, + 1326, { "_inc": [ - 1095 + 1337 ], "_set": [ - 1107 + 1349 ], "pk_columns": [ - 1105, + 1347, "match_clips_pk_columns_input!" ] } ], "update_match_clips_many": [ - 1101, + 1343, { "updates": [ - 1119, + 1361, "[match_clips_updates!]!" ] } ], "update_match_demo_sessions": [ - 1147, + 1389, { "_append": [ - 1132 + 1374 ], "_delete_at_path": [ - 1138 + 1380 ], "_delete_elem": [ - 1139 + 1381 ], "_delete_key": [ - 1140 + 1382 ], "_inc": [ - 1141 + 1383 ], "_prepend": [ - 1151 + 1393 ], "_set": [ - 1153 + 1395 ], "where": [ - 1136, + 1378, "match_demo_sessions_bool_exp!" ] } ], "update_match_demo_sessions_by_pk": [ - 1126, + 1368, { "_append": [ - 1132 + 1374 ], "_delete_at_path": [ - 1138 + 1380 ], "_delete_elem": [ - 1139 + 1381 ], "_delete_key": [ - 1140 + 1382 ], "_inc": [ - 1141 + 1383 ], "_prepend": [ - 1151 + 1393 ], "_set": [ - 1153 + 1395 ], "pk_columns": [ - 1150, + 1392, "match_demo_sessions_pk_columns_input!" ] } ], "update_match_demo_sessions_many": [ - 1147, + 1389, { "updates": [ - 1165, + 1407, "[match_demo_sessions_updates!]!" ] } ], "update_match_invites": [ - 1189, + 1431, { "_inc": [ - 1183 + 1425 ], "_set": [ - 1194 + 1436 ], "where": [ - 1181, + 1423, "match_invites_bool_exp!" ] } ], "update_match_invites_by_pk": [ - 1172, + 1414, { "_inc": [ - 1183 + 1425 ], "_set": [ - 1194 + 1436 ], "pk_columns": [ - 1192, + 1434, "match_invites_pk_columns_input!" ] } ], "update_match_invites_many": [ - 1189, + 1431, { "updates": [ - 1206, + 1448, "[match_invites_updates!]!" ] } ], "update_match_lineup_players": [ - 1232, + 1474, { "_inc": [ - 1226 + 1468 ], "_set": [ - 1239 + 1481 ], "where": [ - 1224, + 1466, "match_lineup_players_bool_exp!" ] } ], "update_match_lineup_players_by_pk": [ - 1213, + 1455, { "_inc": [ - 1226 + 1468 ], "_set": [ - 1239 + 1481 ], "pk_columns": [ - 1235, + 1477, "match_lineup_players_pk_columns_input!" ] } ], "update_match_lineup_players_many": [ - 1232, + 1474, { "updates": [ - 1251, + 1493, "[match_lineup_players_updates!]!" ] } ], "update_match_lineups": [ - 1275, + 1517, { "_inc": [ - 1269 + 1511 ], "_set": [ - 1281 + 1523 ], "where": [ - 1267, + 1509, "match_lineups_bool_exp!" ] } ], "update_match_lineups_by_pk": [ - 1258, + 1500, { "_inc": [ - 1269 + 1511 ], "_set": [ - 1281 + 1523 ], "pk_columns": [ - 1279, + 1521, "match_lineups_pk_columns_input!" ] } ], "update_match_lineups_many": [ - 1275, + 1517, { "updates": [ - 1293, + 1535, "[match_lineups_updates!]!" ] } ], "update_match_map_demos": [ - 1323, + 1565, { "_append": [ - 1308 + 1550 ], "_delete_at_path": [ - 1314 + 1556 ], "_delete_elem": [ - 1315 + 1557 ], "_delete_key": [ - 1316 + 1558 ], "_inc": [ - 1317 + 1559 ], "_prepend": [ - 1328 + 1570 ], "_set": [ - 1332 + 1574 ], "where": [ - 1312, + 1554, "match_map_demos_bool_exp!" ] } ], "update_match_map_demos_by_pk": [ - 1300, + 1542, { "_append": [ - 1308 + 1550 ], "_delete_at_path": [ - 1314 + 1556 ], "_delete_elem": [ - 1315 + 1557 ], "_delete_key": [ - 1316 + 1558 ], "_inc": [ - 1317 + 1559 ], "_prepend": [ - 1328 + 1570 ], "_set": [ - 1332 + 1574 ], "pk_columns": [ - 1327, + 1569, "match_map_demos_pk_columns_input!" ] } ], "update_match_map_demos_many": [ - 1323, + 1565, { "updates": [ - 1344, + 1586, "[match_map_demos_updates!]!" ] } ], "update_match_map_rounds": [ - 1368, + 1610, { "_inc": [ - 1362 + 1604 ], "_set": [ - 1373 + 1615 ], "where": [ - 1360, + 1602, "match_map_rounds_bool_exp!" ] } ], "update_match_map_rounds_by_pk": [ - 1351, + 1593, { "_inc": [ - 1362 + 1604 ], "_set": [ - 1373 + 1615 ], "pk_columns": [ - 1371, + 1613, "match_map_rounds_pk_columns_input!" ] } ], "update_match_map_rounds_many": [ - 1368, + 1610, { "updates": [ - 1385, + 1627, "[match_map_rounds_updates!]!" ] } ], "update_match_map_veto_picks": [ - 1406, + 1648, { "_set": [ - 1411 + 1653 ], "where": [ - 1399, + 1641, "match_map_veto_picks_bool_exp!" ] } ], "update_match_map_veto_picks_by_pk": [ - 1392, + 1634, { "_set": [ - 1411 + 1653 ], "pk_columns": [ - 1409, + 1651, "match_map_veto_picks_pk_columns_input!" ] } ], "update_match_map_veto_picks_many": [ - 1406, + 1648, { "updates": [ - 1415, + 1657, "[match_map_veto_picks_updates!]!" ] } ], "update_match_maps": [ - 1433, + 1675, { "_inc": [ - 1427 + 1669 ], "_set": [ - 1439 + 1681 ], "where": [ - 1425, + 1667, "match_maps_bool_exp!" ] } ], "update_match_maps_by_pk": [ - 1416, + 1658, { "_inc": [ - 1427 + 1669 ], "_set": [ - 1439 + 1681 ], "pk_columns": [ - 1437, + 1679, "match_maps_pk_columns_input!" ] } ], "update_match_maps_many": [ - 1433, + 1675, { "updates": [ - 1451, + 1693, "[match_maps_updates!]!" ] } ], "update_match_options": [ - 1468, + 1710, { "_inc": [ - 1464 + 1706 ], "_set": [ - 1474 + 1716 ], "where": [ - 1462, + 1704, "match_options_bool_exp!" ] } ], "update_match_options_by_pk": [ - 1458, + 1700, { "_inc": [ - 1464 + 1706 ], "_set": [ - 1474 + 1716 ], "pk_columns": [ - 1472, + 1714, "match_options_pk_columns_input!" ] } ], "update_match_options_many": [ - 1468, + 1710, { "updates": [ - 1482, + 1724, "[match_options_updates!]!" ] } ], "update_match_region_veto_picks": [ - 1500, + 1742, { "_set": [ - 1505 + 1747 ], "where": [ - 1493, + 1735, "match_region_veto_picks_bool_exp!" ] } ], "update_match_region_veto_picks_by_pk": [ - 1486, + 1728, { "_set": [ - 1505 + 1747 ], "pk_columns": [ - 1503, + 1745, "match_region_veto_picks_pk_columns_input!" ] } ], "update_match_region_veto_picks_many": [ - 1500, + 1742, { "updates": [ - 1509, + 1751, "[match_region_veto_picks_updates!]!" ] } ], "update_match_streams": [ - 1533, + 1775, { "_append": [ - 1518 + 1760 ], "_delete_at_path": [ - 1524 + 1766 ], "_delete_elem": [ - 1525 + 1767 ], "_delete_key": [ - 1526 + 1768 ], "_inc": [ - 1527 + 1769 ], "_prepend": [ - 1537 + 1779 ], "_set": [ - 1541 + 1783 ], "where": [ - 1522, + 1764, "match_streams_bool_exp!" ] } ], "update_match_streams_by_pk": [ - 1510, + 1752, { "_append": [ - 1518 + 1760 ], "_delete_at_path": [ - 1524 + 1766 ], "_delete_elem": [ - 1525 + 1767 ], "_delete_key": [ - 1526 + 1768 ], "_inc": [ - 1527 + 1769 ], "_prepend": [ - 1537 + 1779 ], "_set": [ - 1541 + 1783 ], "pk_columns": [ - 1536, + 1778, "match_streams_pk_columns_input!" ] } ], "update_match_streams_many": [ - 1533, + 1775, { "updates": [ - 1553, + 1795, "[match_streams_updates!]!" ] } ], "update_match_type_cfgs": [ - 1568, + 1810, { "_set": [ - 1573 + 1815 ], "where": [ - 1563, + 1805, "match_type_cfgs_bool_exp!" ] } ], "update_match_type_cfgs_by_pk": [ - 1560, + 1802, { "_set": [ - 1573 + 1815 ], "pk_columns": [ - 1571, + 1813, "match_type_cfgs_pk_columns_input!" ] } ], "update_match_type_cfgs_many": [ - 1568, + 1810, { "updates": [ - 1577, + 1819, "[match_type_cfgs_updates!]!" ] } ], "update_matches": [ - 1595, + 1837, { "_inc": [ - 1589 + 1831 ], "_set": [ - 1601 + 1843 ], "where": [ - 1587, + 1829, "matches_bool_exp!" ] } ], "update_matches_by_pk": [ - 1578, + 1820, { "_inc": [ - 1589 + 1831 ], "_set": [ - 1601 + 1843 ], "pk_columns": [ - 1599, + 1841, "matches_pk_columns_input!" ] } ], "update_matches_many": [ - 1595, + 1837, { "updates": [ - 1613, + 1855, "[matches_updates!]!" ] } ], "update_migration_hashes_hashes": [ - 1628, + 1870, { "_set": [ - 1633 + 1875 ], "where": [ - 1623, + 1865, "migration_hashes_hashes_bool_exp!" ] } ], "update_migration_hashes_hashes_by_pk": [ - 1620, + 1862, { "_set": [ - 1633 + 1875 ], "pk_columns": [ - 1631, + 1873, "migration_hashes_hashes_pk_columns_input!" ] } ], "update_migration_hashes_hashes_many": [ - 1628, + 1870, { "updates": [ - 1637, + 1879, "[migration_hashes_hashes_updates!]!" ] } ], "update_my_friends": [ - 1660, + 1902, { "_append": [ - 1646 + 1888 ], "_delete_at_path": [ - 1651 + 1893 ], "_delete_elem": [ - 1652 + 1894 ], "_delete_key": [ - 1653 + 1895 ], "_inc": [ - 1654 + 1896 ], "_prepend": [ - 1662 + 1904 ], "_set": [ - 1666 + 1908 ], "where": [ - 1650, + 1892, "my_friends_bool_exp!" ] } ], "update_my_friends_many": [ - 1660, + 1902, { "updates": [ - 1677, + 1919, "[my_friends_updates!]!" ] } ], + "update_news_articles": [ + 1936, + { + "_inc": [ + 1932 + ], + "_set": [ + 1941 + ], + "where": [ + 1930, + "news_articles_bool_exp!" + ] + } + ], + "update_news_articles_by_pk": [ + 1926, + { + "_inc": [ + 1932 + ], + "_set": [ + 1941 + ], + "pk_columns": [ + 1939, + "news_articles_pk_columns_input!" + ] + } + ], + "update_news_articles_many": [ + 1936, + { + "updates": [ + 1949, + "[news_articles_updates!]!" + ] + } + ], "update_notifications": [ - 1707, + 1976, { "_append": [ - 1692 + 1961 ], "_delete_at_path": [ - 1698 + 1967 ], "_delete_elem": [ - 1699 + 1968 ], "_delete_key": [ - 1700 + 1969 ], "_inc": [ - 1701 + 1970 ], "_prepend": [ - 1711 + 1980 ], "_set": [ - 1715 + 1984 ], "where": [ - 1696, + 1965, "notifications_bool_exp!" ] } ], "update_notifications_by_pk": [ - 1684, + 1953, { "_append": [ - 1692 + 1961 ], "_delete_at_path": [ - 1698 + 1967 ], "_delete_elem": [ - 1699 + 1968 ], "_delete_key": [ - 1700 + 1969 ], "_inc": [ - 1701 + 1970 ], "_prepend": [ - 1711 + 1980 ], "_set": [ - 1715 + 1984 ], "pk_columns": [ - 1710, + 1979, "notifications_pk_columns_input!" ] } ], "update_notifications_many": [ - 1707, + 1976, { "updates": [ - 1727, + 1996, "[notifications_updates!]!" ] } ], "update_pending_match_import_players": [ - 1754, + 2023, { "_inc": [ - 1748 + 2017 ], "_set": [ - 1759 + 2028 ], "where": [ - 1746, + 2015, "pending_match_import_players_bool_exp!" ] } ], "update_pending_match_import_players_by_pk": [ - 1737, + 2006, { "_inc": [ - 1748 + 2017 ], "_set": [ - 1759 + 2028 ], "pk_columns": [ - 1757, + 2026, "pending_match_import_players_pk_columns_input!" ] } ], "update_pending_match_import_players_many": [ - 1754, + 2023, { "updates": [ - 1771, + 2040, "[pending_match_import_players_updates!]!" ] } ], "update_pending_match_imports": [ - 1788, + 2057, { "_inc": [ - 1784 + 2053 ], "_set": [ - 1794 + 2063 ], "where": [ - 1782, + 2051, "pending_match_imports_bool_exp!" ] } ], "update_pending_match_imports_by_pk": [ - 1778, + 2047, { "_inc": [ - 1784 + 2053 ], "_set": [ - 1794 + 2063 ], "pk_columns": [ - 1792, + 2061, "pending_match_imports_pk_columns_input!" ] } ], "update_pending_match_imports_many": [ - 1788, + 2057, { "updates": [ - 1802, + 2071, "[pending_match_imports_updates!]!" ] } ], "update_player_aim_stats_demo": [ - 1816, + 2085, { "_inc": [ - 1812 + 2081 ], "_set": [ - 1821 + 2090 ], "where": [ - 1810, + 2079, "player_aim_stats_demo_bool_exp!" ] } ], "update_player_aim_stats_demo_by_pk": [ - 1806, + 2075, { "_inc": [ - 1812 + 2081 ], "_set": [ - 1821 + 2090 ], "pk_columns": [ - 1819, + 2088, "player_aim_stats_demo_pk_columns_input!" ] } ], "update_player_aim_stats_demo_many": [ - 1816, + 2085, { "updates": [ - 1829, + 2098, "[player_aim_stats_demo_updates!]!" ] } ], "update_player_aim_weapon_stats": [ - 1850, + 2119, { "_inc": [ - 1844 + 2113 ], "_set": [ - 1855 + 2124 ], "where": [ - 1842, + 2111, "player_aim_weapon_stats_bool_exp!" ] } ], "update_player_aim_weapon_stats_by_pk": [ - 1833, + 2102, { "_inc": [ - 1844 + 2113 ], "_set": [ - 1855 + 2124 ], "pk_columns": [ - 1853, + 2122, "player_aim_weapon_stats_pk_columns_input!" ] } ], "update_player_aim_weapon_stats_many": [ - 1850, + 2119, { "updates": [ - 1867, + 2136, "[player_aim_weapon_stats_updates!]!" ] } ], "update_player_assists": [ - 1893, + 2162, { "_inc": [ - 1887 + 2156 ], "_set": [ - 1900 + 2169 ], "where": [ - 1885, + 2154, "player_assists_bool_exp!" ] } ], "update_player_assists_by_pk": [ - 1874, + 2143, { "_inc": [ - 1887 + 2156 ], "_set": [ - 1900 + 2169 ], "pk_columns": [ - 1896, + 2165, "player_assists_pk_columns_input!" ] } ], "update_player_assists_many": [ - 1893, + 2162, { "updates": [ - 1912, + 2181, "[player_assists_updates!]!" ] } ], "update_player_damages": [ - 1954, + 2223, { "_inc": [ - 1948 + 2217 ], "_set": [ - 1959 + 2228 ], "where": [ - 1946, + 2215, "player_damages_bool_exp!" ] } ], "update_player_damages_by_pk": [ - 1937, + 2206, { "_inc": [ - 1948 + 2217 ], "_set": [ - 1959 + 2228 ], "pk_columns": [ - 1957, + 2226, "player_damages_pk_columns_input!" ] } ], "update_player_damages_many": [ - 1954, + 2223, { "updates": [ - 1971, + 2240, "[player_damages_updates!]!" ] } ], "update_player_elo": [ - 1988, + 2257, { "_inc": [ - 1984 + 2253 ], "_set": [ - 1993 + 2262 ], "where": [ - 1982, + 2251, "player_elo_bool_exp!" ] } ], "update_player_elo_by_pk": [ - 1978, + 2247, { "_inc": [ - 1984 + 2253 ], "_set": [ - 1993 + 2262 ], "pk_columns": [ - 1991, + 2260, "player_elo_pk_columns_input!" ] } ], "update_player_elo_many": [ - 1988, + 2257, { "updates": [ - 2001, + 2270, "[player_elo_updates!]!" ] } ], "update_player_faceit_rank_history": [ - 2022, + 2291, { "_inc": [ - 2016 + 2285 ], "_set": [ - 2027 + 2296 ], "where": [ - 2014, + 2283, "player_faceit_rank_history_bool_exp!" ] } ], "update_player_faceit_rank_history_by_pk": [ - 2005, + 2274, { "_inc": [ - 2016 + 2285 ], "_set": [ - 2027 + 2296 ], "pk_columns": [ - 2025, + 2294, "player_faceit_rank_history_pk_columns_input!" ] } ], "update_player_faceit_rank_history_many": [ - 2022, + 2291, { "updates": [ - 2039, + 2308, "[player_faceit_rank_history_updates!]!" ] } ], "update_player_flashes": [ - 2065, + 2334, { "_inc": [ - 2059 + 2328 ], "_set": [ - 2072 + 2341 ], "where": [ - 2057, + 2326, "player_flashes_bool_exp!" ] } ], "update_player_flashes_by_pk": [ - 2046, + 2315, { "_inc": [ - 2059 + 2328 ], "_set": [ - 2072 + 2341 ], "pk_columns": [ - 2068, + 2337, "player_flashes_pk_columns_input!" ] } ], "update_player_flashes_many": [ - 2065, + 2334, { "updates": [ - 2084, + 2353, "[player_flashes_updates!]!" ] } ], "update_player_kills": [ - 2151, + 2420, { "_inc": [ - 2145 + 2414 ], "_set": [ - 2158 + 2427 ], "where": [ - 2102, + 2371, "player_kills_bool_exp!" ] } ], "update_player_kills_by_pk": [ - 2091, + 2360, { "_inc": [ - 2145 + 2414 ], "_set": [ - 2158 + 2427 ], "pk_columns": [ - 2154, + 2423, "player_kills_pk_columns_input!" ] } ], "update_player_kills_by_weapon": [ - 2120, + 2389, { "_inc": [ - 2114 + 2383 ], "_set": [ - 2125 + 2394 ], "where": [ - 2112, + 2381, "player_kills_by_weapon_bool_exp!" ] } ], "update_player_kills_by_weapon_by_pk": [ - 2103, + 2372, { "_inc": [ - 2114 + 2383 ], "_set": [ - 2125 + 2394 ], "pk_columns": [ - 2123, + 2392, "player_kills_by_weapon_pk_columns_input!" ] } ], "update_player_kills_by_weapon_many": [ - 2120, + 2389, { "updates": [ - 2137, + 2406, "[player_kills_by_weapon_updates!]!" ] } ], "update_player_kills_many": [ - 2151, + 2420, { "updates": [ - 2170, + 2439, "[player_kills_updates!]!" ] } ], "update_player_leaderboard_rank": [ - 2186, + 2455, { "_inc": [ - 2182 + 2451 ], "_set": [ - 2189 + 2458 ], "where": [ - 2181, + 2450, "player_leaderboard_rank_bool_exp!" ] } ], "update_player_leaderboard_rank_many": [ - 2186, + 2455, { "updates": [ - 2196, + 2465, "[player_leaderboard_rank_updates!]!" ] } ], "update_player_match_map_stats": [ - 2217, + 2486, { "_inc": [ - 2211 + 2480 ], "_set": [ - 2222 + 2491 ], "where": [ - 2209, + 2478, "player_match_map_stats_bool_exp!" ] } ], "update_player_match_map_stats_by_pk": [ - 2200, + 2469, { "_inc": [ - 2211 + 2480 ], "_set": [ - 2222 + 2491 ], "pk_columns": [ - 2220, + 2489, "player_match_map_stats_pk_columns_input!" ] } ], "update_player_match_map_stats_many": [ - 2217, + 2486, { "updates": [ - 2234, + 2503, "[player_match_map_stats_updates!]!" ] } ], "update_player_objectives": [ - 2309, + 2578, { "_inc": [ - 2303 + 2572 ], "_set": [ - 2314 + 2583 ], "where": [ - 2301, + 2570, "player_objectives_bool_exp!" ] } ], "update_player_objectives_by_pk": [ - 2292, + 2561, { "_inc": [ - 2303 + 2572 ], "_set": [ - 2314 + 2583 ], "pk_columns": [ - 2312, + 2581, "player_objectives_pk_columns_input!" ] } ], "update_player_objectives_many": [ - 2309, + 2578, { "updates": [ - 2326, + 2595, "[player_objectives_updates!]!" ] } ], "update_player_premier_rank_history": [ - 2368, + 2637, { "_inc": [ - 2362 + 2631 ], "_set": [ - 2373 + 2642 ], "where": [ - 2360, + 2629, "player_premier_rank_history_bool_exp!" ] } ], "update_player_premier_rank_history_by_pk": [ - 2351, + 2620, { "_inc": [ - 2362 + 2631 ], "_set": [ - 2373 + 2642 ], "pk_columns": [ - 2371, + 2640, "player_premier_rank_history_pk_columns_input!" ] } ], "update_player_premier_rank_history_many": [ - 2368, + 2637, { "updates": [ - 2385, + 2654, "[player_premier_rank_history_updates!]!" ] } ], "update_player_sanctions": [ - 2409, + 2678, { "_inc": [ - 2403 + 2672 ], "_set": [ - 2414 + 2683 ], "where": [ - 2401, + 2670, "player_sanctions_bool_exp!" ] } ], "update_player_sanctions_by_pk": [ - 2392, + 2661, { "_inc": [ - 2403 + 2672 ], "_set": [ - 2414 + 2683 ], "pk_columns": [ - 2412, + 2681, "player_sanctions_pk_columns_input!" ] } ], "update_player_sanctions_many": [ - 2409, + 2678, { "updates": [ - 2426, + 2695, "[player_sanctions_updates!]!" ] } ], "update_player_stats": [ - 2443, + 2712, { "_inc": [ - 2439 + 2708 ], "_set": [ - 2449 + 2718 ], "where": [ - 2437, + 2706, "player_stats_bool_exp!" ] } ], "update_player_stats_by_pk": [ - 2433, + 2702, { "_inc": [ - 2439 + 2708 ], "_set": [ - 2449 + 2718 ], "pk_columns": [ - 2447, + 2716, "player_stats_pk_columns_input!" ] } ], "update_player_stats_many": [ - 2443, + 2712, { "updates": [ - 2457, + 2726, "[player_stats_updates!]!" ] } ], "update_player_steam_match_auth": [ - 2471, + 2740, { "_inc": [ - 2467 + 2736 ], "_set": [ - 2476 + 2745 ], "where": [ - 2465, + 2734, "player_steam_match_auth_bool_exp!" ] } ], "update_player_steam_match_auth_by_pk": [ - 2461, + 2730, { "_inc": [ - 2467 + 2736 ], "_set": [ - 2476 + 2745 ], "pk_columns": [ - 2474, + 2743, "player_steam_match_auth_pk_columns_input!" ] } ], "update_player_steam_match_auth_many": [ - 2471, + 2740, { "updates": [ - 2484, + 2753, "[player_steam_match_auth_updates!]!" ] } ], "update_player_unused_utility": [ - 2505, + 2774, { "_inc": [ - 2499 + 2768 ], "_set": [ - 2510 + 2779 ], "where": [ - 2497, + 2766, "player_unused_utility_bool_exp!" ] } ], "update_player_unused_utility_by_pk": [ - 2488, + 2757, { "_inc": [ - 2499 + 2768 ], "_set": [ - 2510 + 2779 ], "pk_columns": [ - 2508, + 2777, "player_unused_utility_pk_columns_input!" ] } ], "update_player_unused_utility_many": [ - 2505, + 2774, { "updates": [ - 2522, + 2791, "[player_unused_utility_updates!]!" ] } ], "update_player_utility": [ - 2546, + 2815, { "_inc": [ - 2540 + 2809 ], "_set": [ - 2551 + 2820 ], "where": [ - 2538, + 2807, "player_utility_bool_exp!" ] } ], "update_player_utility_by_pk": [ - 2529, + 2798, { "_inc": [ - 2540 + 2809 ], "_set": [ - 2551 + 2820 ], "pk_columns": [ - 2549, + 2818, "player_utility_pk_columns_input!" ] } ], "update_player_utility_many": [ - 2546, + 2815, { "updates": [ - 2563, + 2832, "[player_utility_updates!]!" ] } ], "update_players": [ - 2613, + 2882, { "_inc": [ - 2609 + 2878 ], "_set": [ - 2619 + 2888 ], "where": [ - 2607, + 2876, "players_bool_exp!" ] } ], "update_players_by_pk": [ - 2603, + 2872, { "_inc": [ - 2609 + 2878 ], "_set": [ - 2619 + 2888 ], "pk_columns": [ - 2617, + 2886, "players_pk_columns_input!" ] } ], "update_players_many": [ - 2613, + 2882, { "updates": [ - 2627, + 2896, "[players_updates!]!" ] } ], "update_plugin_versions": [ - 2641, + 2910, { "_inc": [ - 2637 + 2906 ], "_set": [ - 2646 + 2915 ], "where": [ - 2635, + 2904, "plugin_versions_bool_exp!" ] } ], "update_plugin_versions_by_pk": [ - 2631, + 2900, { "_inc": [ - 2637 + 2906 ], "_set": [ - 2646 + 2915 ], "pk_columns": [ - 2644, + 2913, "plugin_versions_pk_columns_input!" ] } ], "update_plugin_versions_many": [ - 2641, + 2910, { "updates": [ - 2654, + 2923, "[plugin_versions_updates!]!" ] } ], "update_server_regions": [ - 2668, + 2937, { "_set": [ - 2674 + 2943 ], "where": [ - 2663, + 2932, "server_regions_bool_exp!" ] } ], "update_server_regions_by_pk": [ - 2659, + 2928, { "_set": [ - 2674 + 2943 ], "pk_columns": [ - 2672, + 2941, "server_regions_pk_columns_input!" ] } ], "update_server_regions_many": [ - 2668, + 2937, { "updates": [ - 2682, + 2951, "[server_regions_updates!]!" ] } ], "update_servers": [ - 2705, + 2974, { "_inc": [ - 2699 + 2968 ], "_set": [ - 2713 + 2982 ], "where": [ - 2697, + 2966, "servers_bool_exp!" ] } ], "update_servers_by_pk": [ - 2686, + 2955, { "_inc": [ - 2699 + 2968 ], "_set": [ - 2713 + 2982 ], "pk_columns": [ - 2709, + 2978, "servers_pk_columns_input!" ] } ], "update_servers_many": [ - 2705, + 2974, { "updates": [ - 2725, + 2994, "[servers_updates!]!" ] } ], "update_settings": [ - 2740, + 3009, { "_set": [ - 2745 + 3014 ], "where": [ - 2735, + 3004, "settings_bool_exp!" ] } ], "update_settings_by_pk": [ - 2732, + 3001, { "_set": [ - 2745 + 3014 ], "pk_columns": [ - 2743, + 3012, "settings_pk_columns_input!" ] } ], "update_settings_many": [ - 2740, + 3009, { "updates": [ - 2749, + 3018, "[settings_updates!]!" ] } ], "update_steam_account_claims": [ - 2764, + 3033, { "_set": [ - 2769 + 3038 ], "where": [ - 2757, + 3026, "steam_account_claims_bool_exp!" ] } ], "update_steam_account_claims_by_pk": [ - 2750, + 3019, { "_set": [ - 2769 + 3038 ], "pk_columns": [ - 2767, + 3036, "steam_account_claims_pk_columns_input!" ] } ], "update_steam_account_claims_many": [ - 2764, + 3033, { "updates": [ - 2773, + 3042, "[steam_account_claims_updates!]!" ] } ], "update_steam_accounts": [ - 2782, + 3051, { "_set": [ - 2788 + 3057 ], "where": [ - 2777, + 3046, "steam_accounts_bool_exp!" ] } ], "update_steam_accounts_by_pk": [ - 2774, + 3043, { "_set": [ - 2788 + 3057 ], "pk_columns": [ - 2786, + 3055, "steam_accounts_pk_columns_input!" ] } ], "update_steam_accounts_many": [ - 2782, + 3051, { "updates": [ - 2792, + 3061, "[steam_accounts_updates!]!" ] } ], "update_team_invites": [ - 2810, + 3079, { "_inc": [ - 2804 + 3073 ], "_set": [ - 2815 + 3084 ], "where": [ - 2802, + 3071, "team_invites_bool_exp!" ] } ], "update_team_invites_by_pk": [ - 2793, + 3062, { "_inc": [ - 2804 + 3073 ], "_set": [ - 2815 + 3084 ], "pk_columns": [ - 2813, + 3082, "team_invites_pk_columns_input!" ] } ], "update_team_invites_many": [ - 2810, + 3079, { "updates": [ - 2827, + 3096, "[team_invites_updates!]!" ] } ], "update_team_roster": [ - 2853, + 3122, { "_inc": [ - 2847 + 3116 ], "_set": [ - 2860 + 3129 ], "where": [ - 2845, + 3114, "team_roster_bool_exp!" ] } ], "update_team_roster_by_pk": [ - 2834, + 3103, { "_inc": [ - 2847 + 3116 ], "_set": [ - 2860 + 3129 ], "pk_columns": [ - 2856, + 3125, "team_roster_pk_columns_input!" ] } ], "update_team_roster_many": [ - 2853, + 3122, { "updates": [ - 2872, + 3141, "[team_roster_updates!]!" ] } ], "update_teams": [ - 2896, + 3165, { "_inc": [ - 2890 + 3159 ], "_set": [ - 2902 + 3171 ], "where": [ - 2888, + 3157, "teams_bool_exp!" ] } ], "update_teams_by_pk": [ - 2879, + 3148, { "_inc": [ - 2890 + 3159 ], "_set": [ - 2902 + 3171 ], "pk_columns": [ - 2900, + 3169, "teams_pk_columns_input!" ] } ], "update_teams_many": [ - 2896, + 3165, { "updates": [ - 2914, + 3183, "[teams_updates!]!" ] } ], "update_tournament_brackets": [ - 2943, + 3212, { "_inc": [ - 2937 + 3206 ], "_set": [ - 2951 + 3220 ], "where": [ - 2935, + 3204, "tournament_brackets_bool_exp!" ] } ], "update_tournament_brackets_by_pk": [ - 2924, + 3193, { "_inc": [ - 2937 + 3206 ], "_set": [ - 2951 + 3220 ], "pk_columns": [ - 2947, + 3216, "tournament_brackets_pk_columns_input!" ] } ], "update_tournament_brackets_many": [ - 2943, + 3212, { "updates": [ - 2963, + 3232, "[tournament_brackets_updates!]!" ] } ], "update_tournament_organizers": [ - 2987, + 3256, { "_inc": [ - 2981 + 3250 ], "_set": [ - 2992 + 3261 ], "where": [ - 2979, + 3248, "tournament_organizers_bool_exp!" ] } ], "update_tournament_organizers_by_pk": [ - 2970, + 3239, { "_inc": [ - 2981 + 3250 ], "_set": [ - 2992 + 3261 ], "pk_columns": [ - 2990, + 3259, "tournament_organizers_pk_columns_input!" ] } ], "update_tournament_organizers_many": [ - 2987, + 3256, { "updates": [ - 3004, + 3273, "[tournament_organizers_updates!]!" ] } ], "update_tournament_stages": [ - 3034, + 3303, { "_append": [ - 3019 + 3288 ], "_delete_at_path": [ - 3025 + 3294 ], "_delete_elem": [ - 3026 + 3295 ], "_delete_key": [ - 3027 + 3296 ], "_inc": [ - 3028 + 3297 ], "_prepend": [ - 3039 + 3308 ], "_set": [ - 3043 + 3312 ], "where": [ - 3023, + 3292, "tournament_stages_bool_exp!" ] } ], "update_tournament_stages_by_pk": [ - 3011, + 3280, { "_append": [ - 3019 + 3288 ], "_delete_at_path": [ - 3025 + 3294 ], "_delete_elem": [ - 3026 + 3295 ], "_delete_key": [ - 3027 + 3296 ], "_inc": [ - 3028 + 3297 ], "_prepend": [ - 3039 + 3308 ], "_set": [ - 3043 + 3312 ], "pk_columns": [ - 3038, + 3307, "tournament_stages_pk_columns_input!" ] } ], "update_tournament_stages_many": [ - 3034, + 3303, { "updates": [ - 3055, + 3324, "[tournament_stages_updates!]!" ] } ], "update_tournament_team_invites": [ - 3079, + 3348, { "_inc": [ - 3073 + 3342 ], "_set": [ - 3084 + 3353 ], "where": [ - 3071, + 3340, "tournament_team_invites_bool_exp!" ] } ], "update_tournament_team_invites_by_pk": [ - 3062, + 3331, { "_inc": [ - 3073 + 3342 ], "_set": [ - 3084 + 3353 ], "pk_columns": [ - 3082, + 3351, "tournament_team_invites_pk_columns_input!" ] } ], "update_tournament_team_invites_many": [ - 3079, + 3348, { "updates": [ - 3096, + 3365, "[tournament_team_invites_updates!]!" ] } ], "update_tournament_team_roster": [ - 3120, + 3389, { "_inc": [ - 3114 + 3383 ], "_set": [ - 3125 + 3394 ], "where": [ - 3112, + 3381, "tournament_team_roster_bool_exp!" ] } ], "update_tournament_team_roster_by_pk": [ - 3103, + 3372, { "_inc": [ - 3114 + 3383 ], "_set": [ - 3125 + 3394 ], "pk_columns": [ - 3123, + 3392, "tournament_team_roster_pk_columns_input!" ] } ], "update_tournament_team_roster_many": [ - 3120, + 3389, { "updates": [ - 3137, + 3406, "[tournament_team_roster_updates!]!" ] } ], "update_tournament_teams": [ - 3161, + 3430, { "_inc": [ - 3155 + 3424 ], "_set": [ - 3167 + 3436 ], "where": [ - 3153, + 3422, "tournament_teams_bool_exp!" ] } ], "update_tournament_teams_by_pk": [ - 3144, + 3413, { "_inc": [ - 3155 + 3424 ], "_set": [ - 3167 + 3436 ], "pk_columns": [ - 3165, + 3434, "tournament_teams_pk_columns_input!" ] } ], "update_tournament_teams_many": [ - 3161, + 3430, { "updates": [ - 3179, + 3448, "[tournament_teams_updates!]!" ] } ], "update_tournament_trophies": [ - 3205, + 3474, { "_inc": [ - 3199 + 3468 ], "_set": [ - 3212 + 3481 ], "where": [ - 3197, + 3466, "tournament_trophies_bool_exp!" ] } ], "update_tournament_trophies_by_pk": [ - 3186, + 3455, { "_inc": [ - 3199 + 3468 ], "_set": [ - 3212 + 3481 ], "pk_columns": [ - 3208, + 3477, "tournament_trophies_pk_columns_input!" ] } ], "update_tournament_trophies_many": [ - 3205, + 3474, { "updates": [ - 3224, + 3493, "[tournament_trophies_updates!]!" ] } ], "update_tournament_trophy_configs": [ - 3248, + 3517, { "_inc": [ - 3242 + 3511 ], "_set": [ - 3254 + 3523 ], "where": [ - 3240, + 3509, "tournament_trophy_configs_bool_exp!" ] } ], - "update_tournament_trophy_configs_by_pk": [ - 3231, + "update_tournament_trophy_configs_by_pk": [ + 3500, + { + "_inc": [ + 3511 + ], + "_set": [ + 3523 + ], + "pk_columns": [ + 3521, + "tournament_trophy_configs_pk_columns_input!" + ] + } + ], + "update_tournament_trophy_configs_many": [ + 3517, + { + "updates": [ + 3535, + "[tournament_trophy_configs_updates!]!" + ] + } + ], + "update_tournaments": [ + 3561, + { + "_inc": [ + 3555 + ], + "_set": [ + 3569 + ], + "where": [ + 3553, + "tournaments_bool_exp!" + ] + } + ], + "update_tournaments_by_pk": [ + 3542, + { + "_inc": [ + 3555 + ], + "_set": [ + 3569 + ], + "pk_columns": [ + 3565, + "tournaments_pk_columns_input!" + ] + } + ], + "update_tournaments_many": [ + 3561, + { + "updates": [ + 3581, + "[tournaments_updates!]!" + ] + } + ], + "update_v_match_captains": [ + 3617, + { + "_inc": [ + 3613 + ], + "_set": [ + 3621 + ], + "where": [ + 3612, + "v_match_captains_bool_exp!" + ] + } + ], + "update_v_match_captains_many": [ + 3617, + { + "updates": [ + 3628, + "[v_match_captains_updates!]!" + ] + } + ], + "update_v_match_map_backup_rounds": [ + 3728, + { + "_inc": [ + 3724 + ], + "_set": [ + 3731 + ], + "where": [ + 3723, + "v_match_map_backup_rounds_bool_exp!" + ] + } + ], + "update_v_match_map_backup_rounds_many": [ + 3728, + { + "updates": [ + 3738, + "[v_match_map_backup_rounds_updates!]!" + ] + } + ], + "update_v_player_match_map_hltv": [ + 3950, + { + "_inc": [ + 3944 + ], + "_set": [ + 3953 + ], + "where": [ + 3943, + "v_player_match_map_hltv_bool_exp!" + ] + } + ], + "update_v_player_match_map_hltv_many": [ + 3950, + { + "updates": [ + 3964, + "[v_player_match_map_hltv_updates!]!" + ] + } + ], + "update_v_pool_maps": [ + 4109, + { + "_set": [ + 4114 + ], + "where": [ + 4103, + "v_pool_maps_bool_exp!" + ] + } + ], + "update_v_pool_maps_many": [ + 4109, + { + "updates": [ + 4117, + "[v_pool_maps_updates!]!" + ] + } + ], + "update_v_team_stage_results": [ + 4163, + { + "_inc": [ + 4157 + ], + "_set": [ + 4177 + ], + "where": [ + 4155, + "v_team_stage_results_bool_exp!" + ] + } + ], + "update_v_team_stage_results_by_pk": [ + 4136, + { + "_inc": [ + 4157 + ], + "_set": [ + 4177 + ], + "pk_columns": [ + 4167, + "v_team_stage_results_pk_columns_input!" + ] + } + ], + "update_v_team_stage_results_many": [ + 4163, + { + "updates": [ + 4189, + "[v_team_stage_results_updates!]!" + ] + } + ], + "validateGamedata": [ + 67, + { + "game_server_node_id": [ + 3588, + "uuid!" + ] + } + ], + "watchDemo": [ + 76, + { + "match_map_demo_id": [ + 3588 + ], + "match_map_id": [ + 3588, + "uuid!" + ] + } + ], + "writeServerFile": [ + 67, + { + "content": [ + 64, + "String!" + ], + "file_path": [ + 64, + "String!" + ], + "node_id": [ + 64, + "String!" + ], + "server_id": [ + 64 + ] + } + ], + "__typename": [ + 64 + ] + }, + "Subscription": { + "_map_pool": [ + 77, + { + "distinct_on": [ + 89, + "[_map_pool_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 87, + "[_map_pool_order_by!]" + ], + "where": [ + 80 + ] + } + ], + "_map_pool_aggregate": [ + 78, + { + "distinct_on": [ + 89, + "[_map_pool_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 87, + "[_map_pool_order_by!]" + ], + "where": [ + 80 + ] + } + ], + "_map_pool_by_pk": [ + 77, + { + "map_id": [ + 3588, + "uuid!" + ], + "map_pool_id": [ + 3588, + "uuid!" + ] + } + ], + "_map_pool_stream": [ + 77, + { + "batch_size": [ + 35, + "Int!" + ], + "cursor": [ + 91, + "[_map_pool_stream_cursor_input]!" + ], + "where": [ + 80 + ] + } + ], + "abandoned_matches": [ + 95, + { + "distinct_on": [ + 116, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 114, + "[abandoned_matches_order_by!]" + ], + "where": [ + 104 + ] + } + ], + "abandoned_matches_aggregate": [ + 96, + { + "distinct_on": [ + 116, + "[abandoned_matches_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 114, + "[abandoned_matches_order_by!]" + ], + "where": [ + 104 + ] + } + ], + "abandoned_matches_by_pk": [ + 95, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "abandoned_matches_stream": [ + 95, + { + "batch_size": [ + 35, + "Int!" + ], + "cursor": [ + 124, + "[abandoned_matches_stream_cursor_input]!" + ], + "where": [ + 104 + ] + } + ], + "api_keys": [ + 136, + { + "distinct_on": [ + 150, + "[api_keys_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 148, + "[api_keys_order_by!]" + ], + "where": [ + 140 + ] + } + ], + "api_keys_aggregate": [ + 137, + { + "distinct_on": [ + 150, + "[api_keys_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 148, + "[api_keys_order_by!]" + ], + "where": [ + 140 + ] + } + ], + "api_keys_by_pk": [ + 136, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "api_keys_stream": [ + 136, + { + "batch_size": [ + 35, + "Int!" + ], + "cursor": [ + 155, + "[api_keys_stream_cursor_input]!" + ], + "where": [ + 140 + ] + } + ], + "clip_render_jobs": [ + 167, + { + "distinct_on": [ + 195, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 192, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 179 + ] + } + ], + "clip_render_jobs_aggregate": [ + 168, + { + "distinct_on": [ + 195, + "[clip_render_jobs_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 192, + "[clip_render_jobs_order_by!]" + ], + "where": [ + 179 + ] + } + ], + "clip_render_jobs_by_pk": [ + 167, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "clip_render_jobs_stream": [ + 167, { - "_inc": [ - 3242 + "batch_size": [ + 35, + "Int!" ], - "_set": [ - 3254 + "cursor": [ + 205, + "[clip_render_jobs_stream_cursor_input]!" ], - "pk_columns": [ - 3252, - "tournament_trophy_configs_pk_columns_input!" - ] - } - ], - "update_tournament_trophy_configs_many": [ - 3248, - { - "updates": [ - 3266, - "[tournament_trophy_configs_updates!]!" + "where": [ + 179 ] } ], - "update_tournaments": [ - 3292, + "db_backups": [ + 218, { - "_inc": [ - 3286 + "distinct_on": [ + 232, + "[db_backups_select_column!]" ], - "_set": [ - 3300 + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 230, + "[db_backups_order_by!]" ], "where": [ - 3284, - "tournaments_bool_exp!" + 222 ] } ], - "update_tournaments_by_pk": [ - 3273, + "db_backups_aggregate": [ + 219, { - "_inc": [ - 3286 + "distinct_on": [ + 232, + "[db_backups_select_column!]" ], - "_set": [ - 3300 + "limit": [ + 35 ], - "pk_columns": [ - 3296, - "tournaments_pk_columns_input!" + "offset": [ + 35 + ], + "order_by": [ + 230, + "[db_backups_order_by!]" + ], + "where": [ + 222 ] } ], - "update_tournaments_many": [ - 3292, + "db_backups_by_pk": [ + 218, { - "updates": [ - 3312, - "[tournaments_updates!]!" + "id": [ + 3588, + "uuid!" ] } ], - "update_v_match_captains": [ - 3348, + "db_backups_stream": [ + 218, { - "_inc": [ - 3344 + "batch_size": [ + 35, + "Int!" ], - "_set": [ - 3352 + "cursor": [ + 237, + "[db_backups_stream_cursor_input]!" ], "where": [ - 3343, - "v_match_captains_bool_exp!" + 222 ] } ], - "update_v_match_captains_many": [ - 3348, + "draft_game_picks": [ + 245, { - "updates": [ - 3359, - "[v_match_captains_updates!]!" + "distinct_on": [ + 268, + "[draft_game_picks_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 266, + "[draft_game_picks_order_by!]" + ], + "where": [ + 256 ] } ], - "update_v_match_map_backup_rounds": [ - 3459, + "draft_game_picks_aggregate": [ + 246, { - "_inc": [ - 3455 + "distinct_on": [ + 268, + "[draft_game_picks_select_column!]" ], - "_set": [ - 3462 + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 266, + "[draft_game_picks_order_by!]" ], "where": [ - 3454, - "v_match_map_backup_rounds_bool_exp!" + 256 ] } ], - "update_v_match_map_backup_rounds_many": [ - 3459, + "draft_game_picks_by_pk": [ + 245, { - "updates": [ - 3469, - "[v_match_map_backup_rounds_updates!]!" + "id": [ + 3588, + "uuid!" ] } ], - "update_v_player_match_map_hltv": [ - 3681, + "draft_game_picks_stream": [ + 245, { - "_inc": [ - 3675 + "batch_size": [ + 35, + "Int!" ], - "_set": [ - 3684 + "cursor": [ + 278, + "[draft_game_picks_stream_cursor_input]!" ], "where": [ - 3674, - "v_player_match_map_hltv_bool_exp!" + 256 ] } ], - "update_v_player_match_map_hltv_many": [ - 3681, + "draft_game_players": [ + 290, { - "updates": [ - 3695, - "[v_player_match_map_hltv_updates!]!" + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" + ], + "where": [ + 301 ] } ], - "update_v_pool_maps": [ - 3840, + "draft_game_players_aggregate": [ + 291, { - "_set": [ - 3845 + "distinct_on": [ + 313, + "[draft_game_players_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 311, + "[draft_game_players_order_by!]" ], "where": [ - 3834, - "v_pool_maps_bool_exp!" + 301 ] } ], - "update_v_pool_maps_many": [ - 3840, + "draft_game_players_by_pk": [ + 290, { - "updates": [ - 3848, - "[v_pool_maps_updates!]!" + "draft_game_id": [ + 3588, + "uuid!" + ], + "steam_id": [ + 163, + "bigint!" ] } ], - "update_v_team_stage_results": [ - 3894, + "draft_game_players_stream": [ + 290, { - "_inc": [ - 3888 + "batch_size": [ + 35, + "Int!" ], - "_set": [ - 3908 + "cursor": [ + 323, + "[draft_game_players_stream_cursor_input]!" ], "where": [ - 3886, - "v_team_stage_results_bool_exp!" + 301 ] } ], - "update_v_team_stage_results_by_pk": [ - 3867, + "draft_games": [ + 335, { - "_inc": [ - 3888 + "distinct_on": [ + 359, + "[draft_games_select_column!]" ], - "_set": [ - 3908 + "limit": [ + 35 ], - "pk_columns": [ - 3898, - "v_team_stage_results_pk_columns_input!" - ] - } - ], - "update_v_team_stage_results_many": [ - 3894, - { - "updates": [ - 3920, - "[v_team_stage_results_updates!]!" + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 ] } ], - "validateGamedata": [ - 66, + "draft_games_aggregate": [ + 336, { - "game_server_node_id": [ - 3319, - "uuid!" + "distinct_on": [ + 359, + "[draft_games_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 357, + "[draft_games_order_by!]" + ], + "where": [ + 346 ] } ], - "watchDemo": [ - 75, + "draft_games_by_pk": [ + 335, { - "match_map_demo_id": [ - 3319 - ], - "match_map_id": [ - 3319, + "id": [ + 3588, "uuid!" ] } ], - "writeServerFile": [ - 66, + "draft_games_stream": [ + 335, { - "content": [ - 63, - "String!" - ], - "file_path": [ - 63, - "String!" + "batch_size": [ + 35, + "Int!" ], - "node_id": [ - 63, - "String!" + "cursor": [ + 369, + "[draft_games_stream_cursor_input]!" ], - "server_id": [ - 63 + "where": [ + 346 ] } ], - "__typename": [ - 63 - ] - }, - "Subscription": { - "_map_pool": [ - 76, + "e_check_in_settings": [ + 381, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 395, + "[e_check_in_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 393, + "[e_check_in_settings_order_by!]" ], "where": [ - 79 + 384 ] } ], - "_map_pool_aggregate": [ - 77, + "e_check_in_settings_aggregate": [ + 382, { "distinct_on": [ - 88, - "[_map_pool_select_column!]" + 395, + "[e_check_in_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 86, - "[_map_pool_order_by!]" + 393, + "[e_check_in_settings_order_by!]" ], "where": [ - 79 + 384 ] } ], - "_map_pool_by_pk": [ - 76, + "e_check_in_settings_by_pk": [ + 381, { - "map_id": [ - 3319, - "uuid!" - ], - "map_pool_id": [ - 3319, - "uuid!" + "value": [ + 64, + "String!" ] } ], - "_map_pool_stream": [ - 76, + "e_check_in_settings_stream": [ + 381, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 90, - "[_map_pool_stream_cursor_input]!" + 397, + "[e_check_in_settings_stream_cursor_input]!" ], "where": [ - 79 + 384 ] } ], - "abandoned_matches": [ - 94, + "e_draft_game_captain_selection": [ + 401, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 416, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 414, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 103 + 404 ] } ], - "abandoned_matches_aggregate": [ - 95, + "e_draft_game_captain_selection_aggregate": [ + 402, { "distinct_on": [ - 115, - "[abandoned_matches_select_column!]" + 416, + "[e_draft_game_captain_selection_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 113, - "[abandoned_matches_order_by!]" + 414, + "[e_draft_game_captain_selection_order_by!]" ], "where": [ - 103 + 404 ] } ], - "abandoned_matches_by_pk": [ - 94, + "e_draft_game_captain_selection_by_pk": [ + 401, { - "id": [ - 3319, - "uuid!" + "value": [ + 64, + "String!" ] } ], - "abandoned_matches_stream": [ - 94, + "e_draft_game_captain_selection_stream": [ + 401, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 123, - "[abandoned_matches_stream_cursor_input]!" + 418, + "[e_draft_game_captain_selection_stream_cursor_input]!" ], "where": [ - 103 + 404 ] } ], - "api_keys": [ - 135, + "e_draft_game_draft_order": [ + 422, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 437, + "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 435, + "[e_draft_game_draft_order_order_by!]" ], "where": [ - 139 + 425 ] } ], - "api_keys_aggregate": [ - 136, + "e_draft_game_draft_order_aggregate": [ + 423, { "distinct_on": [ - 149, - "[api_keys_select_column!]" + 437, + "[e_draft_game_draft_order_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 147, - "[api_keys_order_by!]" + 435, + "[e_draft_game_draft_order_order_by!]" ], "where": [ - 139 + 425 ] } ], - "api_keys_by_pk": [ - 135, + "e_draft_game_draft_order_by_pk": [ + 422, { - "id": [ - 3319, - "uuid!" + "value": [ + 64, + "String!" ] } ], - "api_keys_stream": [ - 135, + "e_draft_game_draft_order_stream": [ + 422, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 154, - "[api_keys_stream_cursor_input]!" + 439, + "[e_draft_game_draft_order_stream_cursor_input]!" ], "where": [ - 139 + 425 ] } ], - "clip_render_jobs": [ - 166, + "e_draft_game_mode": [ + 443, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 458, + "[e_draft_game_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 456, + "[e_draft_game_mode_order_by!]" ], "where": [ - 178 + 446 ] } ], - "clip_render_jobs_aggregate": [ - 167, + "e_draft_game_mode_aggregate": [ + 444, { "distinct_on": [ - 194, - "[clip_render_jobs_select_column!]" + 458, + "[e_draft_game_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 191, - "[clip_render_jobs_order_by!]" + 456, + "[e_draft_game_mode_order_by!]" ], "where": [ - 178 + 446 ] } ], - "clip_render_jobs_by_pk": [ - 166, + "e_draft_game_mode_by_pk": [ + 443, { - "id": [ - 3319, - "uuid!" + "value": [ + 64, + "String!" ] } ], - "clip_render_jobs_stream": [ - 166, + "e_draft_game_mode_stream": [ + 443, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 204, - "[clip_render_jobs_stream_cursor_input]!" + 460, + "[e_draft_game_mode_stream_cursor_input]!" ], "where": [ - 178 + 446 ] } ], - "db_backups": [ - 217, + "e_draft_game_player_status": [ + 464, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 479, + "[e_draft_game_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 477, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 221 + 467 ] } ], - "db_backups_aggregate": [ - 218, + "e_draft_game_player_status_aggregate": [ + 465, { "distinct_on": [ - 231, - "[db_backups_select_column!]" + 479, + "[e_draft_game_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 229, - "[db_backups_order_by!]" + 477, + "[e_draft_game_player_status_order_by!]" ], "where": [ - 221 + 467 ] } ], - "db_backups_by_pk": [ - 217, + "e_draft_game_player_status_by_pk": [ + 464, { - "id": [ - 3319, - "uuid!" + "value": [ + 64, + "String!" ] } ], - "db_backups_stream": [ - 217, + "e_draft_game_player_status_stream": [ + 464, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 236, - "[db_backups_stream_cursor_input]!" + 481, + "[e_draft_game_player_status_stream_cursor_input]!" ], "where": [ - 221 + 467 ] } ], - "e_check_in_settings": [ - 244, + "e_draft_game_status": [ + 485, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 500, + "[e_draft_game_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 498, + "[e_draft_game_status_order_by!]" ], "where": [ - 247 + 488 ] } ], - "e_check_in_settings_aggregate": [ - 245, + "e_draft_game_status_aggregate": [ + 486, { "distinct_on": [ - 258, - "[e_check_in_settings_select_column!]" + 500, + "[e_draft_game_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 256, - "[e_check_in_settings_order_by!]" + 498, + "[e_draft_game_status_order_by!]" ], "where": [ - 247 + 488 ] } ], - "e_check_in_settings_by_pk": [ - 244, + "e_draft_game_status_by_pk": [ + 485, { "value": [ - 63, + 64, "String!" ] } ], - "e_check_in_settings_stream": [ - 244, + "e_draft_game_status_stream": [ + 485, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 260, - "[e_check_in_settings_stream_cursor_input]!" + 502, + "[e_draft_game_status_stream_cursor_input]!" ], "where": [ - 247 + 488 ] } ], "e_friend_status": [ - 264, + 506, { "distinct_on": [ - 279, + 521, "[e_friend_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 277, + 519, "[e_friend_status_order_by!]" ], "where": [ - 267 + 509 ] } ], "e_friend_status_aggregate": [ - 265, + 507, { "distinct_on": [ - 279, + 521, "[e_friend_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 277, + 519, "[e_friend_status_order_by!]" ], "where": [ - 267 + 509 ] } ], "e_friend_status_by_pk": [ - 264, + 506, { "value": [ - 63, + 64, "String!" ] } ], "e_friend_status_stream": [ - 264, + 506, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 281, + 523, "[e_friend_status_stream_cursor_input]!" ], "where": [ - 267 + 509 ] } ], "e_game_cfg_types": [ - 285, + 527, { "distinct_on": [ - 299, + 541, "[e_game_cfg_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 297, + 539, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 530 ] } ], "e_game_cfg_types_aggregate": [ - 286, + 528, { "distinct_on": [ - 299, + 541, "[e_game_cfg_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 297, + 539, "[e_game_cfg_types_order_by!]" ], "where": [ - 288 + 530 ] } ], "e_game_cfg_types_by_pk": [ - 285, + 527, { "value": [ - 63, + 64, "String!" ] } ], "e_game_cfg_types_stream": [ - 285, + 527, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 301, + 543, "[e_game_cfg_types_stream_cursor_input]!" ], "where": [ - 288 + 530 ] } ], "e_game_server_node_statuses": [ - 305, + 547, { "distinct_on": [ - 320, + 562, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 318, + 560, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 550 ] } ], "e_game_server_node_statuses_aggregate": [ - 306, + 548, { "distinct_on": [ - 320, + 562, "[e_game_server_node_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 318, + 560, "[e_game_server_node_statuses_order_by!]" ], "where": [ - 308 + 550 ] } ], "e_game_server_node_statuses_by_pk": [ - 305, + 547, { "value": [ - 63, + 64, "String!" ] } ], "e_game_server_node_statuses_stream": [ - 305, + 547, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 322, + 564, "[e_game_server_node_statuses_stream_cursor_input]!" ], "where": [ - 308 + 550 ] } ], "e_lobby_access": [ - 326, + 568, { "distinct_on": [ - 341, + 583, "[e_lobby_access_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 339, + 581, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 571 ] } ], "e_lobby_access_aggregate": [ - 327, + 569, { "distinct_on": [ - 341, + 583, "[e_lobby_access_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 339, + 581, "[e_lobby_access_order_by!]" ], "where": [ - 329 + 571 ] } ], "e_lobby_access_by_pk": [ - 326, + 568, { "value": [ - 63, + 64, "String!" ] } ], "e_lobby_access_stream": [ - 326, + 568, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 343, + 585, "[e_lobby_access_stream_cursor_input]!" ], "where": [ - 329 + 571 ] } ], "e_lobby_player_status": [ - 347, + 589, { "distinct_on": [ - 361, + 603, "[e_lobby_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 359, + 601, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 592 ] } ], "e_lobby_player_status_aggregate": [ - 348, + 590, { "distinct_on": [ - 361, + 603, "[e_lobby_player_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 359, + 601, "[e_lobby_player_status_order_by!]" ], "where": [ - 350 + 592 ] } ], "e_lobby_player_status_by_pk": [ - 347, + 589, { "value": [ - 63, + 64, "String!" ] } ], "e_lobby_player_status_stream": [ - 347, + 589, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 363, + 605, "[e_lobby_player_status_stream_cursor_input]!" ], "where": [ - 350 + 592 ] } ], "e_map_pool_types": [ - 367, + 609, { "distinct_on": [ - 382, + 624, "[e_map_pool_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 380, + 622, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 612 ] } ], "e_map_pool_types_aggregate": [ - 368, + 610, { "distinct_on": [ - 382, + 624, "[e_map_pool_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 380, + 622, "[e_map_pool_types_order_by!]" ], "where": [ - 370 + 612 ] } ], "e_map_pool_types_by_pk": [ - 367, + 609, { "value": [ - 63, + 64, "String!" ] } ], "e_map_pool_types_stream": [ - 367, + 609, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 384, + 626, "[e_map_pool_types_stream_cursor_input]!" ], "where": [ - 370 + 612 ] } ], "e_match_clip_visibility": [ - 388, + 630, { "distinct_on": [ - 402, + 644, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 400, + 642, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 633 ] } ], "e_match_clip_visibility_aggregate": [ - 389, + 631, { "distinct_on": [ - 402, + 644, "[e_match_clip_visibility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 400, + 642, "[e_match_clip_visibility_order_by!]" ], "where": [ - 391 + 633 ] } ], "e_match_clip_visibility_by_pk": [ - 388, + 630, { "value": [ - 63, + 64, "String!" ] } ], "e_match_clip_visibility_stream": [ - 388, + 630, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 404, + 646, "[e_match_clip_visibility_stream_cursor_input]!" ], "where": [ - 391 + 633 ] } ], "e_match_map_status": [ - 408, + 650, { "distinct_on": [ - 423, + 665, "[e_match_map_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 421, + 663, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 653 ] } ], "e_match_map_status_aggregate": [ - 409, + 651, { "distinct_on": [ - 423, + 665, "[e_match_map_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 421, + 663, "[e_match_map_status_order_by!]" ], "where": [ - 411 + 653 ] } ], "e_match_map_status_by_pk": [ - 408, + 650, { "value": [ - 63, + 64, "String!" ] } ], "e_match_map_status_stream": [ - 408, + 650, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 425, + 667, "[e_match_map_status_stream_cursor_input]!" ], "where": [ - 411 + 653 ] } ], "e_match_mode": [ - 429, + 671, { "distinct_on": [ - 443, + 685, "[e_match_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 441, + 683, "[e_match_mode_order_by!]" ], "where": [ - 432 + 674 ] } ], "e_match_mode_aggregate": [ - 430, + 672, { "distinct_on": [ - 443, + 685, "[e_match_mode_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 441, + 683, "[e_match_mode_order_by!]" ], "where": [ - 432 + 674 ] } ], "e_match_mode_by_pk": [ - 429, + 671, { "value": [ - 63, + 64, "String!" ] } ], "e_match_mode_stream": [ - 429, + 671, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 445, + 687, "[e_match_mode_stream_cursor_input]!" ], "where": [ - 432 + 674 ] } ], "e_match_status": [ - 449, + 691, { "distinct_on": [ - 464, + 706, "[e_match_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 462, + 704, "[e_match_status_order_by!]" ], "where": [ - 452 + 694 ] } ], "e_match_status_aggregate": [ - 450, + 692, { "distinct_on": [ - 464, + 706, "[e_match_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 462, + 704, "[e_match_status_order_by!]" ], "where": [ - 452 + 694 ] } ], "e_match_status_by_pk": [ - 449, + 691, { "value": [ - 63, + 64, "String!" ] } ], "e_match_status_stream": [ - 449, + 691, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 466, + 708, "[e_match_status_stream_cursor_input]!" ], "where": [ - 452 + 694 ] } ], "e_match_types": [ - 470, + 712, { "distinct_on": [ - 485, + 727, "[e_match_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 483, + 725, "[e_match_types_order_by!]" ], "where": [ - 473 + 715 ] } ], "e_match_types_aggregate": [ - 471, + 713, { "distinct_on": [ - 485, + 727, "[e_match_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 483, + 725, "[e_match_types_order_by!]" ], "where": [ - 473 + 715 ] } ], "e_match_types_by_pk": [ - 470, + 712, { "value": [ - 63, + 64, "String!" ] } ], "e_match_types_stream": [ - 470, + 712, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 487, + 729, "[e_match_types_stream_cursor_input]!" ], "where": [ - 473 + 715 ] } ], "e_notification_types": [ - 491, + 733, { "distinct_on": [ - 505, + 747, "[e_notification_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 503, + 745, "[e_notification_types_order_by!]" ], "where": [ - 494 + 736 ] } ], "e_notification_types_aggregate": [ - 492, + 734, { "distinct_on": [ - 505, + 747, "[e_notification_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 503, + 745, "[e_notification_types_order_by!]" ], "where": [ - 494 + 736 ] } ], "e_notification_types_by_pk": [ - 491, + 733, { "value": [ - 63, + 64, "String!" ] } ], "e_notification_types_stream": [ - 491, + 733, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 507, + 749, "[e_notification_types_stream_cursor_input]!" ], "where": [ - 494 + 736 ] } ], "e_objective_types": [ - 511, + 753, { "distinct_on": [ - 525, + 767, "[e_objective_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 523, + 765, "[e_objective_types_order_by!]" ], "where": [ - 514 + 756 ] } ], "e_objective_types_aggregate": [ - 512, + 754, { "distinct_on": [ - 525, + 767, "[e_objective_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 523, + 765, "[e_objective_types_order_by!]" ], "where": [ - 514 + 756 ] } ], "e_objective_types_by_pk": [ - 511, + 753, { "value": [ - 63, + 64, "String!" ] } ], "e_objective_types_stream": [ - 511, + 753, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 527, + 769, "[e_objective_types_stream_cursor_input]!" ], "where": [ - 514 + 756 ] } ], "e_player_roles": [ - 531, + 773, { "distinct_on": [ - 545, + 787, "[e_player_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 543, + 785, "[e_player_roles_order_by!]" ], "where": [ - 534 + 776 ] } ], "e_player_roles_aggregate": [ - 532, + 774, { "distinct_on": [ - 545, + 787, "[e_player_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 543, + 785, "[e_player_roles_order_by!]" ], "where": [ - 534 + 776 ] } ], "e_player_roles_by_pk": [ - 531, + 773, { "value": [ - 63, + 64, "String!" ] } ], "e_player_roles_stream": [ - 531, + 773, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 547, + 789, "[e_player_roles_stream_cursor_input]!" ], "where": [ - 534 + 776 ] } ], "e_ready_settings": [ - 551, + 793, { "distinct_on": [ - 565, + 807, "[e_ready_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 563, + 805, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 796 ] } ], "e_ready_settings_aggregate": [ - 552, + 794, { "distinct_on": [ - 565, + 807, "[e_ready_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 563, + 805, "[e_ready_settings_order_by!]" ], "where": [ - 554 + 796 ] } ], "e_ready_settings_by_pk": [ - 551, + 793, { "value": [ - 63, + 64, "String!" ] } ], "e_ready_settings_stream": [ - 551, + 793, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 567, + 809, "[e_ready_settings_stream_cursor_input]!" ], "where": [ - 554 + 796 ] } ], "e_sanction_types": [ - 571, + 813, { "distinct_on": [ - 586, + 828, "[e_sanction_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 584, + 826, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 816 ] } ], "e_sanction_types_aggregate": [ - 572, + 814, { "distinct_on": [ - 586, + 828, "[e_sanction_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 584, + 826, "[e_sanction_types_order_by!]" ], "where": [ - 574 + 816 ] } ], "e_sanction_types_by_pk": [ - 571, + 813, { "value": [ - 63, + 64, "String!" ] } ], "e_sanction_types_stream": [ - 571, + 813, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 588, + 830, "[e_sanction_types_stream_cursor_input]!" ], "where": [ - 574 + 816 ] } ], "e_server_types": [ - 592, + 834, { "distinct_on": [ - 606, + 848, "[e_server_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 604, + 846, "[e_server_types_order_by!]" ], "where": [ - 595 + 837 ] } ], "e_server_types_aggregate": [ - 593, + 835, { "distinct_on": [ - 606, + 848, "[e_server_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 604, + 846, "[e_server_types_order_by!]" ], "where": [ - 595 + 837 ] } ], "e_server_types_by_pk": [ - 592, + 834, { "value": [ - 63, + 64, "String!" ] } ], "e_server_types_stream": [ - 592, + 834, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 608, + 850, "[e_server_types_stream_cursor_input]!" ], "where": [ - 595 + 837 ] } ], "e_sides": [ - 612, + 854, { "distinct_on": [ - 626, + 868, "[e_sides_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 624, + 866, "[e_sides_order_by!]" ], "where": [ - 615 + 857 ] } ], "e_sides_aggregate": [ - 613, + 855, { "distinct_on": [ - 626, + 868, "[e_sides_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 624, + 866, "[e_sides_order_by!]" ], "where": [ - 615 + 857 ] } ], "e_sides_by_pk": [ - 612, + 854, { "value": [ - 63, + 64, "String!" ] } ], "e_sides_stream": [ - 612, + 854, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 628, + 870, "[e_sides_stream_cursor_input]!" ], "where": [ - 615 + 857 ] } ], "e_team_roles": [ - 632, + 874, { "distinct_on": [ - 647, + 889, "[e_team_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 645, + 887, "[e_team_roles_order_by!]" ], "where": [ - 635 + 877 ] } ], "e_team_roles_aggregate": [ - 633, + 875, { "distinct_on": [ - 647, + 889, "[e_team_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 645, + 887, "[e_team_roles_order_by!]" ], "where": [ - 635 + 877 ] } ], "e_team_roles_by_pk": [ - 632, + 874, { "value": [ - 63, + 64, "String!" ] } ], "e_team_roles_stream": [ - 632, + 874, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 649, + 891, "[e_team_roles_stream_cursor_input]!" ], "where": [ - 635 + 877 ] } ], "e_team_roster_statuses": [ - 653, + 895, { "distinct_on": [ - 667, + 909, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 665, + 907, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 898 ] } ], "e_team_roster_statuses_aggregate": [ - 654, + 896, { "distinct_on": [ - 667, + 909, "[e_team_roster_statuses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 665, + 907, "[e_team_roster_statuses_order_by!]" ], "where": [ - 656 + 898 ] } ], "e_team_roster_statuses_by_pk": [ - 653, + 895, { "value": [ - 63, + 64, "String!" ] } ], "e_team_roster_statuses_stream": [ - 653, + 895, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 669, + 911, "[e_team_roster_statuses_stream_cursor_input]!" ], "where": [ - 656 + 898 ] } ], "e_timeout_settings": [ - 673, + 915, { "distinct_on": [ - 687, + 929, "[e_timeout_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 685, + 927, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 918 ] } ], "e_timeout_settings_aggregate": [ - 674, + 916, { "distinct_on": [ - 687, + 929, "[e_timeout_settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 685, + 927, "[e_timeout_settings_order_by!]" ], "where": [ - 676 + 918 ] } ], "e_timeout_settings_by_pk": [ - 673, + 915, { "value": [ - 63, + 64, "String!" ] } ], "e_timeout_settings_stream": [ - 673, + 915, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 689, + 931, "[e_timeout_settings_stream_cursor_input]!" ], "where": [ - 676 + 918 ] } ], "e_tournament_stage_types": [ - 693, + 935, { "distinct_on": [ - 708, + 950, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 706, + 948, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 938 ] } ], "e_tournament_stage_types_aggregate": [ - 694, + 936, { "distinct_on": [ - 708, + 950, "[e_tournament_stage_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 706, + 948, "[e_tournament_stage_types_order_by!]" ], "where": [ - 696 + 938 ] } ], "e_tournament_stage_types_by_pk": [ - 693, + 935, { "value": [ - 63, + 64, "String!" ] } ], "e_tournament_stage_types_stream": [ - 693, + 935, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 710, + 952, "[e_tournament_stage_types_stream_cursor_input]!" ], "where": [ - 696 + 938 ] } ], "e_tournament_status": [ - 714, + 956, { "distinct_on": [ - 729, + 971, "[e_tournament_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 727, + 969, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 959 ] } ], "e_tournament_status_aggregate": [ - 715, + 957, { "distinct_on": [ - 729, + 971, "[e_tournament_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 727, + 969, "[e_tournament_status_order_by!]" ], "where": [ - 717 + 959 ] } ], "e_tournament_status_by_pk": [ - 714, + 956, { "value": [ - 63, + 64, "String!" ] } ], "e_tournament_status_stream": [ - 714, + 956, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 731, + 973, "[e_tournament_status_stream_cursor_input]!" ], "where": [ - 717 + 959 ] } ], "e_utility_types": [ - 735, + 977, { "distinct_on": [ - 749, + 991, "[e_utility_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 747, + 989, "[e_utility_types_order_by!]" ], "where": [ - 738 + 980 ] } ], "e_utility_types_aggregate": [ - 736, + 978, { "distinct_on": [ - 749, + 991, "[e_utility_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 747, + 989, "[e_utility_types_order_by!]" ], "where": [ - 738 + 980 ] } ], "e_utility_types_by_pk": [ - 735, + 977, { "value": [ - 63, + 64, "String!" ] } ], "e_utility_types_stream": [ - 735, + 977, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 751, + 993, "[e_utility_types_stream_cursor_input]!" ], "where": [ - 738 + 980 ] } ], "e_veto_pick_types": [ - 755, + 997, { "distinct_on": [ - 769, + 1011, "[e_veto_pick_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 767, + 1009, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 1000 ] } ], "e_veto_pick_types_aggregate": [ - 756, + 998, { "distinct_on": [ - 769, + 1011, "[e_veto_pick_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 767, + 1009, "[e_veto_pick_types_order_by!]" ], "where": [ - 758 + 1000 ] } ], "e_veto_pick_types_by_pk": [ - 755, + 997, { "value": [ - 63, + 64, "String!" ] } ], "e_veto_pick_types_stream": [ - 755, + 997, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 771, + 1013, "[e_veto_pick_types_stream_cursor_input]!" ], "where": [ - 758 + 1000 ] } ], "e_winning_reasons": [ - 775, + 1017, { "distinct_on": [ - 789, + 1031, "[e_winning_reasons_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 787, + 1029, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1020 ] } ], "e_winning_reasons_aggregate": [ - 776, + 1018, { "distinct_on": [ - 789, + 1031, "[e_winning_reasons_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 787, + 1029, "[e_winning_reasons_order_by!]" ], "where": [ - 778 + 1020 ] } ], "e_winning_reasons_by_pk": [ - 775, + 1017, { "value": [ - 63, + 64, "String!" ] } ], "e_winning_reasons_stream": [ - 775, + 1017, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 791, + 1033, "[e_winning_reasons_stream_cursor_input]!" ], "where": [ - 778 + 1020 ] } ], "friends": [ - 797, + 1039, { "distinct_on": [ - 811, + 1053, "[friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 809, + 1051, "[friends_order_by!]" ], "where": [ - 801 + 1043 ] } ], "friends_aggregate": [ - 798, + 1040, { "distinct_on": [ - 811, + 1053, "[friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 809, + 1051, "[friends_order_by!]" ], "where": [ - 801 + 1043 ] } ], "friends_by_pk": [ - 797, + 1039, { "other_player_steam_id": [ - 162, + 163, "bigint!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "friends_stream": [ - 797, + 1039, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 816, + 1058, "[friends_stream_cursor_input]!" ], "where": [ - 801 + 1043 ] } ], "game_server_nodes": [ - 824, + 1066, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], "game_server_nodes_aggregate": [ - 825, + 1067, { "distinct_on": [ - 853, + 1095, "[game_server_nodes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 850, + 1092, "[game_server_nodes_order_by!]" ], "where": [ - 836 + 1078 ] } ], "game_server_nodes_by_pk": [ - 824, + 1066, { "id": [ - 63, + 64, "String!" ] } ], "game_server_nodes_stream": [ - 824, + 1066, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 863, + 1105, "[game_server_nodes_stream_cursor_input]!" ], "where": [ - 836 + 1078 ] } ], "game_versions": [ - 875, + 1117, { "distinct_on": [ - 895, + 1137, "[game_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 892, + 1134, "[game_versions_order_by!]" ], "where": [ - 880 + 1122 ] } ], "game_versions_aggregate": [ - 876, + 1118, { "distinct_on": [ - 895, + 1137, "[game_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 892, + 1134, "[game_versions_order_by!]" ], "where": [ - 880 + 1122 ] } ], "game_versions_by_pk": [ - 875, + 1117, { "build_id": [ - 34, + 35, "Int!" ] } ], "game_versions_stream": [ - 875, + 1117, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 900, + 1142, "[game_versions_stream_cursor_input]!" ], "where": [ - 880 + 1122 ] } ], "gamedata_signature_validations": [ - 908, + 1150, { "distinct_on": [ - 927, + 1169, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 924, + 1166, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1155 ] } ], "gamedata_signature_validations_aggregate": [ - 909, + 1151, { "distinct_on": [ - 927, + 1169, "[gamedata_signature_validations_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 924, + 1166, "[gamedata_signature_validations_order_by!]" ], "where": [ - 913 + 1155 ] } ], "gamedata_signature_validations_by_pk": [ - 908, + 1150, { "id": [ - 3319, + 3588, "uuid!" ] } ], "gamedata_signature_validations_stream": [ - 908, + 1150, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 932, + 1174, "[gamedata_signature_validations_stream_cursor_input]!" ], "where": [ - 913 + 1155 ] } ], "get_leaderboard": [ - 949, + 1191, { "args": [ - 940, + 1182, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "get_leaderboard_aggregate": [ - 950, + 1192, { "args": [ - 940, + 1182, "get_leaderboard_args!" ], "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "get_player_leaderboard_rank": [ - 2177, + 2446, { "args": [ - 941, + 1183, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "get_player_leaderboard_rank_aggregate": [ - 2178, + 2447, { "args": [ - 941, + 1183, "get_player_leaderboard_rank_args!" ], "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "leaderboard_entries": [ - 949, + 1191, { "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "leaderboard_entries_aggregate": [ - 950, + 1192, { "distinct_on": [ - 960, + 1202, "[leaderboard_entries_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 959, + 1201, "[leaderboard_entries_order_by!]" ], "where": [ - 953 + 1195 ] } ], "leaderboard_entries_stream": [ - 949, + 1191, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 965, + 1207, "[leaderboard_entries_stream_cursor_input]!" ], "where": [ - 953 + 1195 ] } ], "lobbies": [ - 972, + 1214, { "distinct_on": [ - 985, + 1227, "[lobbies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 983, + 1225, "[lobbies_order_by!]" ], "where": [ - 975 + 1217 ] } ], "lobbies_aggregate": [ - 973, + 1215, { "distinct_on": [ - 985, + 1227, "[lobbies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 983, + 1225, "[lobbies_order_by!]" ], "where": [ - 975 + 1217 ] } ], "lobbies_by_pk": [ - 972, + 1214, { "id": [ - 3319, + 3588, "uuid!" ] } ], "lobbies_stream": [ - 972, + 1214, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 987, + 1229, "[lobbies_stream_cursor_input]!" ], "where": [ - 975 + 1217 ] } ], "lobby_players": [ - 991, + 1233, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "lobby_players_aggregate": [ - 992, + 1234, { "distinct_on": [ - 1014, + 1256, "[lobby_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1012, + 1254, "[lobby_players_order_by!]" ], "where": [ - 1002 + 1244 ] } ], "lobby_players_by_pk": [ - 991, + 1233, { "lobby_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "lobby_players_stream": [ - 991, + 1233, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1024, + 1266, "[lobby_players_stream_cursor_input]!" ], "where": [ - 1002 + 1244 ] } ], "map_pools": [ - 1036, + 1278, { "distinct_on": [ - 1049, + 1291, "[map_pools_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1047, + 1289, "[map_pools_order_by!]" ], "where": [ - 1039 + 1281 ] } ], "map_pools_aggregate": [ - 1037, + 1279, { "distinct_on": [ - 1049, + 1291, "[map_pools_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1047, + 1289, "[map_pools_order_by!]" ], "where": [ - 1039 + 1281 ] } ], "map_pools_by_pk": [ - 1036, + 1278, { "id": [ - 3319, + 3588, "uuid!" ] } ], "map_pools_stream": [ - 1036, + 1278, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1051, + 1293, "[map_pools_stream_cursor_input]!" ], "where": [ - 1039 + 1281 ] } ], "maps": [ - 1055, + 1297, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "maps_aggregate": [ - 1056, + 1298, { "distinct_on": [ - 1076, + 1318, "[maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1074, + 1316, "[maps_order_by!]" ], "where": [ - 1064 + 1306 ] } ], "maps_by_pk": [ - 1055, + 1297, { "id": [ - 3319, + 3588, "uuid!" ] } ], "maps_stream": [ - 1055, + 1297, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1080, + 1322, "[maps_stream_cursor_input]!" ], "where": [ - 1064 + 1306 ] } ], "match_clips": [ - 1084, + 1326, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_aggregate": [ - 1085, + 1327, { "distinct_on": [ - 1106, + 1348, "[match_clips_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1104, + 1346, "[match_clips_order_by!]" ], "where": [ - 1093 + 1335 ] } ], "match_clips_by_pk": [ - 1084, + 1326, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_clips_stream": [ - 1084, + 1326, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1114, + 1356, "[match_clips_stream_cursor_input]!" ], "where": [ - 1093 + 1335 ] } ], "match_demo_sessions": [ - 1126, + 1368, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "match_demo_sessions_aggregate": [ - 1127, + 1369, { "distinct_on": [ - 1152, + 1394, "[match_demo_sessions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1149, + 1391, "[match_demo_sessions_order_by!]" ], "where": [ - 1136 + 1378 ] } ], "match_demo_sessions_by_pk": [ - 1126, + 1368, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_demo_sessions_stream": [ - 1126, + 1368, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1160, + 1402, "[match_demo_sessions_stream_cursor_input]!" ], "where": [ - 1136 + 1378 ] } ], "match_invites": [ - 1172, + 1414, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], "match_invites_aggregate": [ - 1173, + 1415, { "distinct_on": [ - 1193, + 1435, "[match_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1191, + 1433, "[match_invites_order_by!]" ], "where": [ - 1181 + 1423 ] } ], "match_invites_by_pk": [ - 1172, + 1414, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_invites_stream": [ - 1172, + 1414, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1201, + 1443, "[match_invites_stream_cursor_input]!" ], "where": [ - 1181 + 1423 ] } ], "match_lineup_players": [ - 1213, + 1455, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "match_lineup_players_aggregate": [ - 1214, + 1456, { "distinct_on": [ - 1236, + 1478, "[match_lineup_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1234, + 1476, "[match_lineup_players_order_by!]" ], "where": [ - 1224 + 1466 ] } ], "match_lineup_players_by_pk": [ - 1213, + 1455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_lineup_players_stream": [ - 1213, + 1455, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1246, + 1488, "[match_lineup_players_stream_cursor_input]!" ], "where": [ - 1224 + 1466 ] } ], "match_lineups": [ - 1258, + 1500, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "match_lineups_aggregate": [ - 1259, + 1501, { "distinct_on": [ - 1280, + 1522, "[match_lineups_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1278, + 1520, "[match_lineups_order_by!]" ], "where": [ - 1267 + 1509 ] } ], "match_lineups_by_pk": [ - 1258, + 1500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_lineups_stream": [ - 1258, + 1500, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1288, + 1530, "[match_lineups_stream_cursor_input]!" ], "where": [ - 1267 + 1509 ] } ], "match_map_demos": [ - 1300, + 1542, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "match_map_demos_aggregate": [ - 1301, + 1543, { "distinct_on": [ - 1329, + 1571, "[match_map_demos_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1326, + 1568, "[match_map_demos_order_by!]" ], "where": [ - 1312 + 1554 ] } ], "match_map_demos_by_pk": [ - 1300, + 1542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_demos_stream": [ - 1300, + 1542, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1339, + 1581, "[match_map_demos_stream_cursor_input]!" ], "where": [ - 1312 + 1554 ] } ], "match_map_rounds": [ - 1351, + 1593, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "match_map_rounds_aggregate": [ - 1352, + 1594, { "distinct_on": [ - 1372, + 1614, "[match_map_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1370, + 1612, "[match_map_rounds_order_by!]" ], "where": [ - 1360 + 1602 ] } ], "match_map_rounds_by_pk": [ - 1351, + 1593, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_rounds_stream": [ - 1351, + 1593, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1380, + 1622, "[match_map_rounds_stream_cursor_input]!" ], "where": [ - 1360 + 1602 ] } ], "match_map_veto_picks": [ - 1392, + 1634, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_map_veto_picks_aggregate": [ - 1393, + 1635, { "distinct_on": [ - 1410, + 1652, "[match_map_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1408, + 1650, "[match_map_veto_picks_order_by!]" ], "where": [ - 1399 + 1641 ] } ], "match_map_veto_picks_by_pk": [ - 1392, + 1634, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_map_veto_picks_stream": [ - 1392, + 1634, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1412, + 1654, "[match_map_veto_picks_stream_cursor_input]!" ], "where": [ - 1399 + 1641 ] } ], "match_maps": [ - 1416, + 1658, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_maps_aggregate": [ - 1417, + 1659, { "distinct_on": [ - 1438, + 1680, "[match_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1436, + 1678, "[match_maps_order_by!]" ], "where": [ - 1425 + 1667 ] } ], "match_maps_by_pk": [ - 1416, + 1658, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_maps_stream": [ - 1416, + 1658, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1446, + 1688, "[match_maps_stream_cursor_input]!" ], "where": [ - 1425 + 1667 ] } ], "match_options": [ - 1458, + 1700, { "distinct_on": [ - 1473, + 1715, "[match_options_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1471, + 1713, "[match_options_order_by!]" ], "where": [ - 1462 + 1704 ] } ], "match_options_aggregate": [ - 1459, + 1701, { "distinct_on": [ - 1473, + 1715, "[match_options_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1471, + 1713, "[match_options_order_by!]" ], "where": [ - 1462 + 1704 ] } ], "match_options_by_pk": [ - 1458, + 1700, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_options_stream": [ - 1458, + 1700, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1478, + 1720, "[match_options_stream_cursor_input]!" ], "where": [ - 1462 + 1704 ] } ], "match_region_veto_picks": [ - 1486, + 1728, { "distinct_on": [ - 1504, + 1746, "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1502, + 1744, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1735 ] } ], "match_region_veto_picks_aggregate": [ - 1487, + 1729, { "distinct_on": [ - 1504, + 1746, "[match_region_veto_picks_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1502, + 1744, "[match_region_veto_picks_order_by!]" ], "where": [ - 1493 + 1735 ] } ], "match_region_veto_picks_by_pk": [ - 1486, + 1728, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_region_veto_picks_stream": [ - 1486, + 1728, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1506, + 1748, "[match_region_veto_picks_stream_cursor_input]!" ], "where": [ - 1493 + 1735 ] } ], "match_streams": [ - 1510, + 1752, { "distinct_on": [ - 1538, + 1780, "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1535, + 1777, "[match_streams_order_by!]" ], "where": [ - 1522 + 1764 ] } ], "match_streams_aggregate": [ - 1511, + 1753, { "distinct_on": [ - 1538, + 1780, "[match_streams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1535, + 1777, "[match_streams_order_by!]" ], "where": [ - 1522 + 1764 ] } ], "match_streams_by_pk": [ - 1510, + 1752, { "id": [ - 3319, + 3588, "uuid!" ] } ], "match_streams_stream": [ - 1510, + 1752, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1548, + 1790, "[match_streams_stream_cursor_input]!" ], "where": [ - 1522 + 1764 ] } ], "match_type_cfgs": [ - 1560, + 1802, { "distinct_on": [ - 1572, + 1814, "[match_type_cfgs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1570, + 1812, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1805 ] } ], "match_type_cfgs_aggregate": [ - 1561, + 1803, { "distinct_on": [ - 1572, + 1814, "[match_type_cfgs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1570, + 1812, "[match_type_cfgs_order_by!]" ], "where": [ - 1563 + 1805 ] } ], "match_type_cfgs_by_pk": [ - 1560, + 1802, { "type": [ - 290, + 532, "e_game_cfg_types_enum!" ] } ], "match_type_cfgs_stream": [ - 1560, + 1802, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1574, + 1816, "[match_type_cfgs_stream_cursor_input]!" ], "where": [ - 1563 + 1805 ] } ], "matches": [ - 1578, + 1820, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_aggregate": [ - 1579, + 1821, { "distinct_on": [ - 1600, + 1842, "[matches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1598, + 1840, "[matches_order_by!]" ], "where": [ - 1587 + 1829 ] } ], "matches_by_pk": [ - 1578, + 1820, { "id": [ - 3319, + 3588, "uuid!" ] } ], "matches_stream": [ - 1578, + 1820, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1608, + 1850, "[matches_stream_cursor_input]!" ], "where": [ - 1587 + 1829 ] } ], "migration_hashes_hashes": [ - 1620, + 1862, { "distinct_on": [ - 1632, + 1874, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1630, + 1872, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1865 ] } ], "migration_hashes_hashes_aggregate": [ - 1621, + 1863, { "distinct_on": [ - 1632, + 1874, "[migration_hashes_hashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1630, + 1872, "[migration_hashes_hashes_order_by!]" ], "where": [ - 1623 + 1865 ] } ], "migration_hashes_hashes_by_pk": [ - 1620, + 1862, { "name": [ - 63, + 64, "String!" ] } ], "migration_hashes_hashes_stream": [ - 1620, + 1862, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1634, + 1876, "[migration_hashes_hashes_stream_cursor_input]!" ], "where": [ - 1623 + 1865 ] } ], "my_friends": [ - 1638, + 1880, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 ] } ], "my_friends_aggregate": [ - 1639, + 1881, { "distinct_on": [ - 1663, + 1905, "[my_friends_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1661, + 1903, "[my_friends_order_by!]" ], "where": [ - 1650 + 1892 ] } ], "my_friends_stream": [ - 1638, + 1880, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1673, + 1915, "[my_friends_stream_cursor_input]!" ], "where": [ - 1650 + 1892 + ] + } + ], + "news_articles": [ + 1926, + { + "distinct_on": [ + 1940, + "[news_articles_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1938, + "[news_articles_order_by!]" + ], + "where": [ + 1930 + ] + } + ], + "news_articles_aggregate": [ + 1927, + { + "distinct_on": [ + 1940, + "[news_articles_select_column!]" + ], + "limit": [ + 35 + ], + "offset": [ + 35 + ], + "order_by": [ + 1938, + "[news_articles_order_by!]" + ], + "where": [ + 1930 + ] + } + ], + "news_articles_by_pk": [ + 1926, + { + "id": [ + 3588, + "uuid!" + ] + } + ], + "news_articles_stream": [ + 1926, + { + "batch_size": [ + 35, + "Int!" + ], + "cursor": [ + 1945, + "[news_articles_stream_cursor_input]!" + ], + "where": [ + 1930 ] } ], "notifications": [ - 1684, + 1953, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "notifications_aggregate": [ - 1685, + 1954, { "distinct_on": [ - 1712, + 1981, "[notifications_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1709, + 1978, "[notifications_order_by!]" ], "where": [ - 1696 + 1965 ] } ], "notifications_by_pk": [ - 1684, + 1953, { "id": [ - 3319, + 3588, "uuid!" ] } ], "notifications_stream": [ - 1684, + 1953, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1722, + 1991, "[notifications_stream_cursor_input]!" ], "where": [ - 1696 + 1965 ] } ], "pending_match_import_players": [ - 1737, + 2006, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "pending_match_import_players_aggregate": [ - 1738, + 2007, { "distinct_on": [ - 1758, + 2027, "[pending_match_import_players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1756, + 2025, "[pending_match_import_players_order_by!]" ], "where": [ - 1746 + 2015 ] } ], "pending_match_import_players_by_pk": [ - 1737, + 2006, { "steam_id": [ - 162, + 163, "bigint!" ], "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "pending_match_import_players_stream": [ - 1737, + 2006, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1766, + 2035, "[pending_match_import_players_stream_cursor_input]!" ], "where": [ - 1746 + 2015 ] } ], "pending_match_imports": [ - 1778, + 2047, { "distinct_on": [ - 1793, + 2062, "[pending_match_imports_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1791, + 2060, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2051 ] } ], "pending_match_imports_aggregate": [ - 1779, + 2048, { "distinct_on": [ - 1793, + 2062, "[pending_match_imports_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1791, + 2060, "[pending_match_imports_order_by!]" ], "where": [ - 1782 + 2051 ] } ], "pending_match_imports_by_pk": [ - 1778, + 2047, { "valve_match_id": [ - 1734, + 2003, "numeric!" ] } ], "pending_match_imports_stream": [ - 1778, + 2047, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1798, + 2067, "[pending_match_imports_stream_cursor_input]!" ], "where": [ - 1782 + 2051 ] } ], "player_aim_stats_demo": [ - 1806, + 2075, { "distinct_on": [ - 1820, + 2089, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1818, + 2087, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2079 ] } ], "player_aim_stats_demo_aggregate": [ - 1807, + 2076, { "distinct_on": [ - 1820, + 2089, "[player_aim_stats_demo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1818, + 2087, "[player_aim_stats_demo_order_by!]" ], "where": [ - 1810 + 2079 ] } ], "player_aim_stats_demo_by_pk": [ - 1806, + 2075, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ] } ], "player_aim_stats_demo_stream": [ - 1806, + 2075, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1825, + 2094, "[player_aim_stats_demo_stream_cursor_input]!" ], "where": [ - 1810 + 2079 ] } ], "player_aim_weapon_stats": [ - 1833, + 2102, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "player_aim_weapon_stats_aggregate": [ - 1834, + 2103, { "distinct_on": [ - 1854, + 2123, "[player_aim_weapon_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1852, + 2121, "[player_aim_weapon_stats_order_by!]" ], "where": [ - 1842 + 2111 ] } ], "player_aim_weapon_stats_by_pk": [ - 1833, + 2102, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "weapon_class": [ - 63, + 64, "String!" ] } ], "player_aim_weapon_stats_stream": [ - 1833, + 2102, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1862, + 2131, "[player_aim_weapon_stats_stream_cursor_input]!" ], "where": [ - 1842 + 2111 ] } ], "player_assists": [ - 1874, + 2143, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_assists_aggregate": [ - 1875, + 2144, { "distinct_on": [ - 1897, + 2166, "[player_assists_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1895, + 2164, "[player_assists_order_by!]" ], "where": [ - 1885 + 2154 ] } ], "player_assists_by_pk": [ - 1874, + 2143, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_assists_stream": [ - 1874, + 2143, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1907, + 2176, "[player_assists_stream_cursor_input]!" ], "where": [ - 1885 + 2154 ] } ], "player_career_stats_v": [ - 1919, + 2188, { "distinct_on": [ - 1927, + 2196, "[player_career_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1926, + 2195, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2192 ] } ], "player_career_stats_v_aggregate": [ - 1920, + 2189, { "distinct_on": [ - 1927, + 2196, "[player_career_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1926, + 2195, "[player_career_stats_v_order_by!]" ], "where": [ - 1923 + 2192 ] } ], "player_career_stats_v_stream": [ - 1919, + 2188, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1931, + 2200, "[player_career_stats_v_stream_cursor_input]!" ], "where": [ - 1923 + 2192 ] } ], "player_damages": [ - 1937, + 2206, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_damages_aggregate": [ - 1938, + 2207, { "distinct_on": [ - 1958, + 2227, "[player_damages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1956, + 2225, "[player_damages_order_by!]" ], "where": [ - 1946 + 2215 ] } ], "player_damages_by_pk": [ - 1937, + 2206, { "id": [ - 3319, + 3588, "uuid!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_damages_stream": [ - 1937, + 2206, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1966, + 2235, "[player_damages_stream_cursor_input]!" ], "where": [ - 1946 + 2215 ] } ], "player_elo": [ - 1978, + 2247, { "distinct_on": [ - 1992, + 2261, "[player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1990, + 2259, "[player_elo_order_by!]" ], "where": [ - 1982 + 2251 ] } ], "player_elo_aggregate": [ - 1979, + 2248, { "distinct_on": [ - 1992, + 2261, "[player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 1990, + 2259, "[player_elo_order_by!]" ], "where": [ - 1982 + 2251 ] } ], "player_elo_by_pk": [ - 1978, + 2247, { "match_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ], "type": [ - 475, + 717, "e_match_types_enum!" ] } ], "player_elo_stream": [ - 1978, + 2247, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 1997, + 2266, "[player_elo_stream_cursor_input]!" ], "where": [ - 1982 + 2251 ] } ], "player_faceit_rank_history": [ - 2005, + 2274, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "player_faceit_rank_history_aggregate": [ - 2006, + 2275, { "distinct_on": [ - 2026, + 2295, "[player_faceit_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2024, + 2293, "[player_faceit_rank_history_order_by!]" ], "where": [ - 2014 + 2283 ] } ], "player_faceit_rank_history_by_pk": [ - 2005, + 2274, { "id": [ - 3319, + 3588, "uuid!" ] } ], "player_faceit_rank_history_stream": [ - 2005, + 2274, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2034, + 2303, "[player_faceit_rank_history_stream_cursor_input]!" ], "where": [ - 2014 + 2283 ] } ], "player_flashes": [ - 2046, + 2315, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "player_flashes_aggregate": [ - 2047, + 2316, { "distinct_on": [ - 2069, + 2338, "[player_flashes_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2067, + 2336, "[player_flashes_order_by!]" ], "where": [ - 2057 + 2326 ] } ], "player_flashes_by_pk": [ - 2046, + 2315, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_flashes_stream": [ - 2046, + 2315, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2079, + 2348, "[player_flashes_stream_cursor_input]!" ], "where": [ - 2057 + 2326 ] } ], "player_kills": [ - 2091, + 2360, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_kills_aggregate": [ - 2092, + 2361, { "distinct_on": [ - 2155, + 2424, "[player_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2153, + 2422, "[player_kills_order_by!]" ], "where": [ - 2102 + 2371 ] } ], "player_kills_by_pk": [ - 2091, + 2360, { "attacked_steam_id": [ - 162, + 163, "bigint!" ], "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_kills_by_weapon": [ - 2103, + 2372, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "player_kills_by_weapon_aggregate": [ - 2104, + 2373, { "distinct_on": [ - 2124, + 2393, "[player_kills_by_weapon_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2122, + 2391, "[player_kills_by_weapon_order_by!]" ], "where": [ - 2112 + 2381 ] } ], "player_kills_by_weapon_by_pk": [ - 2103, + 2372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "with": [ - 63, + 64, "String!" ] } ], "player_kills_by_weapon_stream": [ - 2103, + 2372, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2132, + 2401, "[player_kills_by_weapon_stream_cursor_input]!" ], "where": [ - 2112 + 2381 ] } ], "player_kills_stream": [ - 2091, + 2360, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2165, + 2434, "[player_kills_stream_cursor_input]!" ], "where": [ - 2102 + 2371 ] } ], "player_leaderboard_rank": [ - 2177, + 2446, { "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "player_leaderboard_rank_aggregate": [ - 2178, + 2447, { "distinct_on": [ - 2188, + 2457, "[player_leaderboard_rank_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2187, + 2456, "[player_leaderboard_rank_order_by!]" ], "where": [ - 2181 + 2450 ] } ], "player_leaderboard_rank_stream": [ - 2177, + 2446, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2193, + 2462, "[player_leaderboard_rank_stream_cursor_input]!" ], "where": [ - 2181 + 2450 ] } ], "player_match_map_stats": [ - 2200, + 2469, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "player_match_map_stats_aggregate": [ - 2201, + 2470, { "distinct_on": [ - 2221, + 2490, "[player_match_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2219, + 2488, "[player_match_map_stats_order_by!]" ], "where": [ - 2209 + 2478 ] } ], "player_match_map_stats_by_pk": [ - 2200, + 2469, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "steam_id": [ - 162, + 163, "bigint!" ] } ], "player_match_map_stats_stream": [ - 2200, + 2469, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2229, + 2498, "[player_match_map_stats_stream_cursor_input]!" ], "where": [ - 2209 + 2478 ] } ], "player_match_performance_v": [ - 2241, + 2510, { "distinct_on": [ - 2249, + 2518, "[player_match_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2248, + 2517, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2514 ] } ], "player_match_performance_v_aggregate": [ - 2242, + 2511, { "distinct_on": [ - 2249, + 2518, "[player_match_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2248, + 2517, "[player_match_performance_v_order_by!]" ], "where": [ - 2245 + 2514 ] } ], "player_match_performance_v_stream": [ - 2241, + 2510, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2253, + 2522, "[player_match_performance_v_stream_cursor_input]!" ], "where": [ - 2245 + 2514 ] } ], "player_match_stats_v": [ - 2259, + 2528, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "player_match_stats_v_aggregate": [ - 2260, + 2529, { "distinct_on": [ - 2275, + 2544, "[player_match_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2274, + 2543, "[player_match_stats_v_order_by!]" ], "where": [ - 2268 + 2537 ] } ], "player_match_stats_v_stream": [ - 2259, + 2528, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2282, + 2551, "[player_match_stats_v_stream_cursor_input]!" ], "where": [ - 2268 + 2537 ] } ], "player_objectives": [ - 2292, + 2561, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "player_objectives_aggregate": [ - 2293, + 2562, { "distinct_on": [ - 2313, + 2582, "[player_objectives_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2311, + 2580, "[player_objectives_order_by!]" ], "where": [ - 2301 + 2570 ] } ], "player_objectives_by_pk": [ - 2292, + 2561, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_objectives_stream": [ - 2292, + 2561, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2321, + 2590, "[player_objectives_stream_cursor_input]!" ], "where": [ - 2301 + 2570 ] } ], "player_performance_v": [ - 2333, + 2602, { "distinct_on": [ - 2341, + 2610, "[player_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2340, + 2609, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2606 ] } ], "player_performance_v_aggregate": [ - 2334, + 2603, { "distinct_on": [ - 2341, + 2610, "[player_performance_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2340, + 2609, "[player_performance_v_order_by!]" ], "where": [ - 2337 + 2606 ] } ], "player_performance_v_stream": [ - 2333, + 2602, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2345, + 2614, "[player_performance_v_stream_cursor_input]!" ], "where": [ - 2337 + 2606 ] } ], "player_premier_rank_history": [ - 2351, + 2620, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "player_premier_rank_history_aggregate": [ - 2352, + 2621, { "distinct_on": [ - 2372, + 2641, "[player_premier_rank_history_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2370, + 2639, "[player_premier_rank_history_order_by!]" ], "where": [ - 2360 + 2629 ] } ], "player_premier_rank_history_by_pk": [ - 2351, + 2620, { "id": [ - 3319, + 3588, "uuid!" ] } ], "player_premier_rank_history_stream": [ - 2351, + 2620, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2380, + 2649, "[player_premier_rank_history_stream_cursor_input]!" ], "where": [ - 2360 + 2629 ] } ], "player_sanctions": [ - 2392, + 2661, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], "player_sanctions_aggregate": [ - 2393, + 2662, { "distinct_on": [ - 2413, + 2682, "[player_sanctions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2411, + 2680, "[player_sanctions_order_by!]" ], "where": [ - 2401 + 2670 ] } ], "player_sanctions_by_pk": [ - 2392, + 2661, { "created_at": [ - 2922, + 3191, "timestamptz!" ], "id": [ - 3319, + 3588, "uuid!" ] } ], "player_sanctions_stream": [ - 2392, + 2661, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2421, + 2690, "[player_sanctions_stream_cursor_input]!" ], "where": [ - 2401 + 2670 ] } ], "player_stats": [ - 2433, + 2702, { "distinct_on": [ - 2448, + 2717, "[player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2446, + 2715, "[player_stats_order_by!]" ], "where": [ - 2437 + 2706 ] } ], "player_stats_aggregate": [ - 2434, + 2703, { "distinct_on": [ - 2448, + 2717, "[player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2446, + 2715, "[player_stats_order_by!]" ], "where": [ - 2437 + 2706 ] } ], "player_stats_by_pk": [ - 2433, + 2702, { "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "player_stats_stream": [ - 2433, + 2702, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2453, + 2722, "[player_stats_stream_cursor_input]!" ], "where": [ - 2437 + 2706 ] } ], "player_steam_match_auth": [ - 2461, + 2730, { "distinct_on": [ - 2475, + 2744, "[player_steam_match_auth_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2473, + 2742, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2734 ] } ], "player_steam_match_auth_aggregate": [ - 2462, + 2731, { "distinct_on": [ - 2475, + 2744, "[player_steam_match_auth_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2473, + 2742, "[player_steam_match_auth_order_by!]" ], "where": [ - 2465 + 2734 ] } ], "player_steam_match_auth_by_pk": [ - 2461, + 2730, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "player_steam_match_auth_stream": [ - 2461, + 2730, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2480, + 2749, "[player_steam_match_auth_stream_cursor_input]!" ], "where": [ - 2465 + 2734 ] } ], "player_unused_utility": [ - 2488, + 2757, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utility_aggregate": [ - 2489, + 2758, { "distinct_on": [ - 2509, + 2778, "[player_unused_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2507, + 2776, "[player_unused_utility_order_by!]" ], "where": [ - 2497 + 2766 ] } ], "player_unused_utility_by_pk": [ - 2488, + 2757, { "match_map_id": [ - 3319, + 3588, "uuid!" ], "player_steam_id": [ - 162, + 163, "bigint!" ] } ], "player_unused_utility_stream": [ - 2488, + 2757, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2517, + 2786, "[player_unused_utility_stream_cursor_input]!" ], "where": [ - 2497 + 2766 ] } ], "player_utility": [ - 2529, + 2798, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "player_utility_aggregate": [ - 2530, + 2799, { "distinct_on": [ - 2550, + 2819, "[player_utility_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2548, + 2817, "[player_utility_order_by!]" ], "where": [ - 2538 + 2807 ] } ], "player_utility_by_pk": [ - 2529, + 2798, { "attacker_steam_id": [ - 162, + 163, "bigint!" ], "match_map_id": [ - 3319, + 3588, "uuid!" ], "time": [ - 2922, + 3191, "timestamptz!" ] } ], "player_utility_stream": [ - 2529, + 2798, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2558, + 2827, "[player_utility_stream_cursor_input]!" ], "where": [ - 2538 + 2807 ] } ], "player_weapon_stats_v": [ - 2570, + 2839, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "player_weapon_stats_v_aggregate": [ - 2571, + 2840, { "distinct_on": [ - 2586, + 2855, "[player_weapon_stats_v_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2585, + 2854, "[player_weapon_stats_v_order_by!]" ], "where": [ - 2579 + 2848 ] } ], "player_weapon_stats_v_stream": [ - 2570, + 2839, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2593, + 2862, "[player_weapon_stats_v_stream_cursor_input]!" ], "where": [ - 2579 + 2848 ] } ], "players": [ - 2603, + 2872, { "distinct_on": [ - 2618, + 2887, "[players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2616, + 2885, "[players_order_by!]" ], "where": [ - 2607 + 2876 ] } ], "players_aggregate": [ - 2604, + 2873, { "distinct_on": [ - 2618, + 2887, "[players_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2616, + 2885, "[players_order_by!]" ], "where": [ - 2607 + 2876 ] } ], "players_by_pk": [ - 2603, + 2872, { "steam_id": [ - 162, + 163, "bigint!" ] } ], "players_stream": [ - 2603, + 2872, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2623, + 2892, "[players_stream_cursor_input]!" ], "where": [ - 2607 + 2876 ] } ], "plugin_versions": [ - 2631, + 2900, { "distinct_on": [ - 2645, + 2914, "[plugin_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2643, + 2912, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2904 ] } ], "plugin_versions_aggregate": [ - 2632, + 2901, { "distinct_on": [ - 2645, + 2914, "[plugin_versions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2643, + 2912, "[plugin_versions_order_by!]" ], "where": [ - 2635 + 2904 ] } ], "plugin_versions_by_pk": [ - 2631, + 2900, { "version": [ - 63, + 64, "String!" ] } ], "plugin_versions_stream": [ - 2631, + 2900, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2650, + 2919, "[plugin_versions_stream_cursor_input]!" ], "where": [ - 2635 + 2904 ] } ], "server_regions": [ - 2659, + 2928, { "distinct_on": [ - 2673, + 2942, "[server_regions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2671, + 2940, "[server_regions_order_by!]" ], "where": [ - 2663 + 2932 ] } ], "server_regions_aggregate": [ - 2660, + 2929, { "distinct_on": [ - 2673, + 2942, "[server_regions_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2671, + 2940, "[server_regions_order_by!]" ], "where": [ - 2663 + 2932 ] } ], "server_regions_by_pk": [ - 2659, + 2928, { "value": [ - 63, + 64, "String!" ] } ], "server_regions_stream": [ - 2659, + 2928, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2678, + 2947, "[server_regions_stream_cursor_input]!" ], "where": [ - 2663 + 2932 ] } ], "servers": [ - 2686, + 2955, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_aggregate": [ - 2687, + 2956, { "distinct_on": [ - 2710, + 2979, "[servers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2708, + 2977, "[servers_order_by!]" ], "where": [ - 2697 + 2966 ] } ], "servers_by_pk": [ - 2686, + 2955, { "id": [ - 3319, + 3588, "uuid!" ] } ], "servers_stream": [ - 2686, + 2955, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2720, + 2989, "[servers_stream_cursor_input]!" ], "where": [ - 2697 + 2966 ] } ], "settings": [ - 2732, + 3001, { "distinct_on": [ - 2744, + 3013, "[settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2742, + 3011, "[settings_order_by!]" ], "where": [ - 2735 + 3004 ] } ], "settings_aggregate": [ - 2733, + 3002, { "distinct_on": [ - 2744, + 3013, "[settings_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2742, + 3011, "[settings_order_by!]" ], "where": [ - 2735 + 3004 ] } ], "settings_by_pk": [ - 2732, + 3001, { "name": [ - 63, + 64, "String!" ] } ], "settings_stream": [ - 2732, + 3001, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2746, + 3015, "[settings_stream_cursor_input]!" ], "where": [ - 2735 + 3004 ] } ], "steam_account_claims": [ - 2750, + 3019, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "steam_account_claims_aggregate": [ - 2751, + 3020, { "distinct_on": [ - 2768, + 3037, "[steam_account_claims_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2766, + 3035, "[steam_account_claims_order_by!]" ], "where": [ - 2757 + 3026 ] } ], "steam_account_claims_by_pk": [ - 2750, + 3019, { "id": [ - 3319, + 3588, "uuid!" ] } ], "steam_account_claims_stream": [ - 2750, + 3019, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2770, + 3039, "[steam_account_claims_stream_cursor_input]!" ], "where": [ - 2757 + 3026 ] } ], "steam_accounts": [ - 2774, + 3043, { "distinct_on": [ - 2787, + 3056, "[steam_accounts_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2785, + 3054, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3046 ] } ], "steam_accounts_aggregate": [ - 2775, + 3044, { "distinct_on": [ - 2787, + 3056, "[steam_accounts_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2785, + 3054, "[steam_accounts_order_by!]" ], "where": [ - 2777 + 3046 ] } ], "steam_accounts_by_pk": [ - 2774, + 3043, { "id": [ - 3319, + 3588, "uuid!" ] } ], "steam_accounts_stream": [ - 2774, + 3043, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2789, + 3058, "[steam_accounts_stream_cursor_input]!" ], "where": [ - 2777 + 3046 ] } ], "team_invites": [ - 2793, + 3062, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_invites_aggregate": [ - 2794, + 3063, { "distinct_on": [ - 2814, + 3083, "[team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2812, + 3081, "[team_invites_order_by!]" ], "where": [ - 2802 + 3071 ] } ], "team_invites_by_pk": [ - 2793, + 3062, { "id": [ - 3319, + 3588, "uuid!" ] } ], "team_invites_stream": [ - 2793, + 3062, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2822, + 3091, "[team_invites_stream_cursor_input]!" ], "where": [ - 2802 + 3071 ] } ], "team_roster": [ - 2834, + 3103, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_roster_aggregate": [ - 2835, + 3104, { "distinct_on": [ - 2857, + 3126, "[team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2855, + 3124, "[team_roster_order_by!]" ], "where": [ - 2845 + 3114 ] } ], "team_roster_by_pk": [ - 2834, + 3103, { "player_steam_id": [ - 162, + 163, "bigint!" ], "team_id": [ - 3319, + 3588, "uuid!" ] } ], "team_roster_stream": [ - 2834, + 3103, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2867, + 3136, "[team_roster_stream_cursor_input]!" ], "where": [ - 2845 + 3114 ] } ], "teams": [ - 2879, + 3148, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "teams_aggregate": [ - 2880, + 3149, { "distinct_on": [ - 2901, + 3170, "[teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2899, + 3168, "[teams_order_by!]" ], "where": [ - 2888 + 3157 ] } ], "teams_by_pk": [ - 2879, + 3148, { "id": [ - 3319, + 3588, "uuid!" ] } ], "teams_stream": [ - 2879, + 3148, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2909, + 3178, "[teams_stream_cursor_input]!" ], "where": [ - 2888 + 3157 ] } ], "tournament_brackets": [ - 2924, + 3193, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "tournament_brackets_aggregate": [ - 2925, + 3194, { "distinct_on": [ - 2948, + 3217, "[tournament_brackets_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2946, + 3215, "[tournament_brackets_order_by!]" ], "where": [ - 2935 + 3204 ] } ], "tournament_brackets_by_pk": [ - 2924, + 3193, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_brackets_stream": [ - 2924, + 3193, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2958, + 3227, "[tournament_brackets_stream_cursor_input]!" ], "where": [ - 2935 + 3204 ] } ], "tournament_organizers": [ - 2970, + 3239, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_organizers_aggregate": [ - 2971, + 3240, { "distinct_on": [ - 2991, + 3260, "[tournament_organizers_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 2989, + 3258, "[tournament_organizers_order_by!]" ], "where": [ - 2979 + 3248 ] } ], "tournament_organizers_by_pk": [ - 2970, + 3239, { "steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_organizers_stream": [ - 2970, + 3239, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 2999, + 3268, "[tournament_organizers_stream_cursor_input]!" ], "where": [ - 2979 + 3248 ] } ], "tournament_stages": [ - 3011, + 3280, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "tournament_stages_aggregate": [ - 3012, + 3281, { "distinct_on": [ - 3040, + 3309, "[tournament_stages_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3037, + 3306, "[tournament_stages_order_by!]" ], "where": [ - 3023 + 3292 ] } ], "tournament_stages_by_pk": [ - 3011, + 3280, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_stages_stream": [ - 3011, + 3280, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3050, + 3319, "[tournament_stages_stream_cursor_input]!" ], "where": [ - 3023 + 3292 ] } ], "tournament_team_invites": [ - 3062, + 3331, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "tournament_team_invites_aggregate": [ - 3063, + 3332, { "distinct_on": [ - 3083, + 3352, "[tournament_team_invites_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3081, + 3350, "[tournament_team_invites_order_by!]" ], "where": [ - 3071 + 3340 ] } ], "tournament_team_invites_by_pk": [ - 3062, + 3331, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_team_invites_stream": [ - 3062, + 3331, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3091, + 3360, "[tournament_team_invites_stream_cursor_input]!" ], "where": [ - 3071 + 3340 ] } ], "tournament_team_roster": [ - 3103, + 3372, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_team_roster_aggregate": [ - 3104, + 3373, { "distinct_on": [ - 3124, + 3393, "[tournament_team_roster_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3122, + 3391, "[tournament_team_roster_order_by!]" ], "where": [ - 3112 + 3381 ] } ], "tournament_team_roster_by_pk": [ - 3103, + 3372, { "player_steam_id": [ - 162, + 163, "bigint!" ], "tournament_id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_team_roster_stream": [ - 3103, + 3372, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3132, + 3401, "[tournament_team_roster_stream_cursor_input]!" ], "where": [ - 3112 + 3381 ] } ], "tournament_teams": [ - 3144, + 3413, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "tournament_teams_aggregate": [ - 3145, + 3414, { "distinct_on": [ - 3166, + 3435, "[tournament_teams_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3164, + 3433, "[tournament_teams_order_by!]" ], "where": [ - 3153 + 3422 ] } ], "tournament_teams_by_pk": [ - 3144, + 3413, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_teams_stream": [ - 3144, + 3413, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3174, + 3443, "[tournament_teams_stream_cursor_input]!" ], "where": [ - 3153 + 3422 ] } ], "tournament_trophies": [ - 3186, + 3455, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophies_aggregate": [ - 3187, + 3456, { "distinct_on": [ - 3209, + 3478, "[tournament_trophies_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3207, + 3476, "[tournament_trophies_order_by!]" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophies_by_pk": [ - 3186, + 3455, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_trophies_stream": [ - 3186, + 3455, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3219, + 3488, "[tournament_trophies_stream_cursor_input]!" ], "where": [ - 3197 + 3466 ] } ], "tournament_trophy_configs": [ - 3231, + 3500, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "tournament_trophy_configs_aggregate": [ - 3232, + 3501, { "distinct_on": [ - 3253, + 3522, "[tournament_trophy_configs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3251, + 3520, "[tournament_trophy_configs_order_by!]" ], "where": [ - 3240 + 3509 ] } ], "tournament_trophy_configs_by_pk": [ - 3231, + 3500, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournament_trophy_configs_stream": [ - 3231, + 3500, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3261, + 3530, "[tournament_trophy_configs_stream_cursor_input]!" ], "where": [ - 3240 + 3509 ] } ], "tournaments": [ - 3273, + 3542, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_aggregate": [ - 3274, + 3543, { "distinct_on": [ - 3297, + 3566, "[tournaments_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3295, + 3564, "[tournaments_order_by!]" ], "where": [ - 3284 + 3553 ] } ], "tournaments_by_pk": [ - 3273, + 3542, { "id": [ - 3319, + 3588, "uuid!" ] } ], "tournaments_stream": [ - 3273, + 3542, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3307, + 3576, "[tournaments_stream_cursor_input]!" ], "where": [ - 3284 + 3553 ] } ], "v_gpu_pool_status": [ - 3321, + 3590, { "distinct_on": [ - 3329, + 3598, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3328, + 3597, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3594 ] } ], "v_gpu_pool_status_aggregate": [ - 3322, + 3591, { "distinct_on": [ - 3329, + 3598, "[v_gpu_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3328, + 3597, "[v_gpu_pool_status_order_by!]" ], "where": [ - 3325 + 3594 ] } ], "v_gpu_pool_status_stream": [ - 3321, + 3590, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3333, + 3602, "[v_gpu_pool_status_stream_cursor_input]!" ], "where": [ - 3325 + 3594 ] } ], "v_match_captains": [ - 3339, + 3608, { "distinct_on": [ - 3351, + 3620, "[v_match_captains_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3350, + 3619, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3612 ] } ], "v_match_captains_aggregate": [ - 3340, + 3609, { "distinct_on": [ - 3351, + 3620, "[v_match_captains_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3350, + 3619, "[v_match_captains_order_by!]" ], "where": [ - 3343 + 3612 ] } ], "v_match_captains_stream": [ - 3339, + 3608, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3356, + 3625, "[v_match_captains_stream_cursor_input]!" ], "where": [ - 3343 + 3612 ] } ], "v_match_clutches": [ - 3363, + 3632, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "v_match_clutches_aggregate": [ - 3364, + 3633, { "distinct_on": [ - 3379, + 3648, "[v_match_clutches_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3378, + 3647, "[v_match_clutches_order_by!]" ], "where": [ - 3372 + 3641 ] } ], "v_match_clutches_stream": [ - 3363, + 3632, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3386, + 3655, "[v_match_clutches_stream_cursor_input]!" ], "where": [ - 3372 + 3641 ] } ], "v_match_kill_pairs": [ - 3396, + 3665, { "distinct_on": [ - 3404, + 3673, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3403, + 3672, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3669 ] } ], "v_match_kill_pairs_aggregate": [ - 3397, + 3666, { "distinct_on": [ - 3404, + 3673, "[v_match_kill_pairs_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3403, + 3672, "[v_match_kill_pairs_order_by!]" ], "where": [ - 3400 + 3669 ] } ], "v_match_kill_pairs_stream": [ - 3396, + 3665, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3408, + 3677, "[v_match_kill_pairs_stream_cursor_input]!" ], "where": [ - 3400 + 3669 ] } ], "v_match_lineup_buy_types": [ - 3414, + 3683, { "distinct_on": [ - 3422, + 3691, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3421, + 3690, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3687 ] } ], "v_match_lineup_buy_types_aggregate": [ - 3415, + 3684, { "distinct_on": [ - 3422, + 3691, "[v_match_lineup_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3421, + 3690, "[v_match_lineup_buy_types_order_by!]" ], "where": [ - 3418 + 3687 ] } ], "v_match_lineup_buy_types_stream": [ - 3414, + 3683, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3426, + 3695, "[v_match_lineup_buy_types_stream_cursor_input]!" ], "where": [ - 3418 + 3687 ] } ], "v_match_lineup_map_stats": [ - 3432, + 3701, { "distinct_on": [ - 3440, + 3709, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3439, + 3708, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3705 ] } ], "v_match_lineup_map_stats_aggregate": [ - 3433, + 3702, { "distinct_on": [ - 3440, + 3709, "[v_match_lineup_map_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3439, + 3708, "[v_match_lineup_map_stats_order_by!]" ], "where": [ - 3436 + 3705 ] } ], "v_match_lineup_map_stats_stream": [ - 3432, + 3701, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3444, + 3713, "[v_match_lineup_map_stats_stream_cursor_input]!" ], "where": [ - 3436 + 3705 ] } ], "v_match_map_backup_rounds": [ - 3450, + 3719, { "distinct_on": [ - 3461, + 3730, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3460, + 3729, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3723 ] } ], "v_match_map_backup_rounds_aggregate": [ - 3451, + 3720, { "distinct_on": [ - 3461, + 3730, "[v_match_map_backup_rounds_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3460, + 3729, "[v_match_map_backup_rounds_order_by!]" ], "where": [ - 3454 + 3723 ] } ], "v_match_map_backup_rounds_stream": [ - 3450, + 3719, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3466, + 3735, "[v_match_map_backup_rounds_stream_cursor_input]!" ], "where": [ - 3454 + 3723 ] } ], "v_match_player_buy_types": [ - 3473, + 3742, { "distinct_on": [ - 3481, + 3750, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3480, + 3749, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3746 ] } ], "v_match_player_buy_types_aggregate": [ - 3474, + 3743, { "distinct_on": [ - 3481, + 3750, "[v_match_player_buy_types_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3480, + 3749, "[v_match_player_buy_types_order_by!]" ], "where": [ - 3477 + 3746 ] } ], "v_match_player_buy_types_stream": [ - 3473, + 3742, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3485, + 3754, "[v_match_player_buy_types_stream_cursor_input]!" ], "where": [ - 3477 + 3746 ] } ], "v_match_player_opening_duels": [ - 3491, + 3760, { "distinct_on": [ - 3507, + 3776, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, + 3775, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3769 ] } ], "v_match_player_opening_duels_aggregate": [ - 3492, + 3761, { "distinct_on": [ - 3507, + 3776, "[v_match_player_opening_duels_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3506, + 3775, "[v_match_player_opening_duels_order_by!]" ], "where": [ - 3500 + 3769 ] } ], "v_match_player_opening_duels_stream": [ - 3491, + 3760, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3514, + 3783, "[v_match_player_opening_duels_stream_cursor_input]!" ], "where": [ - 3500 + 3769 ] } ], "v_player_arch_nemesis": [ - 3524, + 3793, { "distinct_on": [ - 3532, + 3801, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3531, + 3800, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3797 ] } ], "v_player_arch_nemesis_aggregate": [ - 3525, + 3794, { "distinct_on": [ - 3532, + 3801, "[v_player_arch_nemesis_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3531, + 3800, "[v_player_arch_nemesis_order_by!]" ], "where": [ - 3528 + 3797 ] } ], "v_player_arch_nemesis_stream": [ - 3524, + 3793, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3536, + 3805, "[v_player_arch_nemesis_stream_cursor_input]!" ], "where": [ - 3528 + 3797 ] } ], "v_player_damage": [ - 3542, + 3811, { "distinct_on": [ - 3550, + 3819, "[v_player_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3549, + 3818, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3815 ] } ], "v_player_damage_aggregate": [ - 3543, + 3812, { "distinct_on": [ - 3550, + 3819, "[v_player_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3549, + 3818, "[v_player_damage_order_by!]" ], "where": [ - 3546 + 3815 ] } ], "v_player_damage_stream": [ - 3542, + 3811, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3554, + 3823, "[v_player_damage_stream_cursor_input]!" ], "where": [ - 3546 + 3815 ] } ], "v_player_elo": [ - 3560, + 3829, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "v_player_elo_aggregate": [ - 3561, + 3830, { "distinct_on": [ - 3586, + 3855, "[v_player_elo_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3585, + 3854, "[v_player_elo_order_by!]" ], "where": [ - 3579 + 3848 ] } ], "v_player_elo_stream": [ - 3560, + 3829, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3601, + 3870, "[v_player_elo_stream_cursor_input]!" ], "where": [ - 3579 + 3848 ] } ], "v_player_map_losses": [ - 3611, + 3880, { "distinct_on": [ - 3619, + 3888, "[v_player_map_losses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3618, + 3887, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3884 ] } ], "v_player_map_losses_aggregate": [ - 3612, + 3881, { "distinct_on": [ - 3619, + 3888, "[v_player_map_losses_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3618, + 3887, "[v_player_map_losses_order_by!]" ], "where": [ - 3615 + 3884 ] } ], "v_player_map_losses_stream": [ - 3611, + 3880, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3623, + 3892, "[v_player_map_losses_stream_cursor_input]!" ], "where": [ - 3615 + 3884 ] } ], "v_player_map_wins": [ - 3629, + 3898, { "distinct_on": [ - 3637, + 3906, "[v_player_map_wins_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3636, + 3905, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3902 ] } ], "v_player_map_wins_aggregate": [ - 3630, + 3899, { "distinct_on": [ - 3637, + 3906, "[v_player_map_wins_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3636, + 3905, "[v_player_map_wins_order_by!]" ], "where": [ - 3633 + 3902 ] } ], "v_player_map_wins_stream": [ - 3629, + 3898, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3641, + 3910, "[v_player_map_wins_stream_cursor_input]!" ], "where": [ - 3633 + 3902 ] } ], "v_player_match_head_to_head": [ - 3647, + 3916, { "distinct_on": [ - 3655, + 3924, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3654, + 3923, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3920 ] } ], "v_player_match_head_to_head_aggregate": [ - 3648, + 3917, { "distinct_on": [ - 3655, + 3924, "[v_player_match_head_to_head_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3654, + 3923, "[v_player_match_head_to_head_order_by!]" ], "where": [ - 3651 + 3920 ] } ], "v_player_match_head_to_head_stream": [ - 3647, + 3916, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3659, + 3928, "[v_player_match_head_to_head_stream_cursor_input]!" ], "where": [ - 3651 + 3920 ] } ], "v_player_match_map_hltv": [ - 3665, + 3934, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "v_player_match_map_hltv_aggregate": [ - 3666, + 3935, { "distinct_on": [ - 3683, + 3952, "[v_player_match_map_hltv_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3682, + 3951, "[v_player_match_map_hltv_order_by!]" ], "where": [ - 3674 + 3943 ] } ], "v_player_match_map_hltv_stream": [ - 3665, + 3934, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3691, + 3960, "[v_player_match_map_hltv_stream_cursor_input]!" ], "where": [ - 3674 + 3943 ] } ], "v_player_match_map_roles": [ - 3702, + 3971, { "distinct_on": [ - 3710, + 3979, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3709, + 3978, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3975 ] } ], "v_player_match_map_roles_aggregate": [ - 3703, + 3972, { "distinct_on": [ - 3710, + 3979, "[v_player_match_map_roles_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3709, + 3978, "[v_player_match_map_roles_order_by!]" ], "where": [ - 3706 + 3975 ] } ], "v_player_match_map_roles_stream": [ - 3702, + 3971, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3714, + 3983, "[v_player_match_map_roles_stream_cursor_input]!" ], "where": [ - 3706 + 3975 ] } ], "v_player_match_performance": [ - 3720, + 3989, { "distinct_on": [ - 3728, + 3997, "[v_player_match_performance_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3727, + 3996, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3993 ] } ], "v_player_match_performance_aggregate": [ - 3721, + 3990, { "distinct_on": [ - 3728, + 3997, "[v_player_match_performance_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3727, + 3996, "[v_player_match_performance_order_by!]" ], "where": [ - 3724 + 3993 ] } ], "v_player_match_performance_stream": [ - 3720, + 3989, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3732, + 4001, "[v_player_match_performance_stream_cursor_input]!" ], "where": [ - 3724 + 3993 ] } ], "v_player_match_rating": [ - 3738, + 4007, { "distinct_on": [ - 3746, + 4015, "[v_player_match_rating_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3745, + 4014, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4011 ] } ], "v_player_match_rating_aggregate": [ - 3739, + 4008, { "distinct_on": [ - 3746, + 4015, "[v_player_match_rating_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3745, + 4014, "[v_player_match_rating_order_by!]" ], "where": [ - 3742 + 4011 ] } ], "v_player_match_rating_stream": [ - 3738, + 4007, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3750, + 4019, "[v_player_match_rating_stream_cursor_input]!" ], "where": [ - 3742 + 4011 ] } ], "v_player_multi_kills": [ - 3756, + 4025, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "v_player_multi_kills_aggregate": [ - 3757, + 4026, { "distinct_on": [ - 3772, + 4041, "[v_player_multi_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3771, + 4040, "[v_player_multi_kills_order_by!]" ], "where": [ - 3765 + 4034 ] } ], "v_player_multi_kills_stream": [ - 3756, + 4025, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3779, + 4048, "[v_player_multi_kills_stream_cursor_input]!" ], "where": [ - 3765 + 4034 ] } ], "v_player_weapon_damage": [ - 3789, + 4058, { "distinct_on": [ - 3797, + 4066, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3796, + 4065, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4062 ] } ], "v_player_weapon_damage_aggregate": [ - 3790, + 4059, { "distinct_on": [ - 3797, + 4066, "[v_player_weapon_damage_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3796, + 4065, "[v_player_weapon_damage_order_by!]" ], "where": [ - 3793 + 4062 ] } ], "v_player_weapon_damage_stream": [ - 3789, + 4058, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3801, + 4070, "[v_player_weapon_damage_stream_cursor_input]!" ], "where": [ - 3793 + 4062 ] } ], "v_player_weapon_kills": [ - 3807, + 4076, { "distinct_on": [ - 3815, + 4084, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3814, + 4083, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4080 ] } ], "v_player_weapon_kills_aggregate": [ - 3808, + 4077, { "distinct_on": [ - 3815, + 4084, "[v_player_weapon_kills_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3814, + 4083, "[v_player_weapon_kills_order_by!]" ], "where": [ - 3811 + 4080 ] } ], "v_player_weapon_kills_stream": [ - 3807, + 4076, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3819, + 4088, "[v_player_weapon_kills_stream_cursor_input]!" ], "where": [ - 3811 + 4080 ] } ], "v_pool_maps": [ - 3825, + 4094, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], "v_pool_maps_aggregate": [ - 3826, + 4095, { "distinct_on": [ - 3842, + 4111, "[v_pool_maps_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3841, + 4110, "[v_pool_maps_order_by!]" ], "where": [ - 3834 + 4103 ] } ], "v_pool_maps_stream": [ - 3825, + 4094, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3846, + 4115, "[v_pool_maps_stream_cursor_input]!" ], "where": [ - 3834 + 4103 ] } ], "v_steam_account_pool_status": [ - 3849, + 4118, { "distinct_on": [ - 3857, + 4126, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3856, + 4125, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4122 ] } ], "v_steam_account_pool_status_aggregate": [ - 3850, + 4119, { "distinct_on": [ - 3857, + 4126, "[v_steam_account_pool_status_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3856, + 4125, "[v_steam_account_pool_status_order_by!]" ], "where": [ - 3853 + 4122 ] } ], "v_steam_account_pool_status_stream": [ - 3849, + 4118, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3861, + 4130, "[v_steam_account_pool_status_stream_cursor_input]!" ], "where": [ - 3853 + 4122 ] } ], "v_team_stage_results": [ - 3867, + 4136, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "v_team_stage_results_aggregate": [ - 3868, + 4137, { "distinct_on": [ - 3899, + 4168, "[v_team_stage_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3897, + 4166, "[v_team_stage_results_order_by!]" ], "where": [ - 3886 + 4155 ] } ], "v_team_stage_results_by_pk": [ - 3867, + 4136, { "tournament_stage_id": [ - 3319, + 3588, "uuid!" ], "tournament_team_id": [ - 3319, + 3588, "uuid!" ] } ], "v_team_stage_results_stream": [ - 3867, + 4136, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3915, + 4184, "[v_team_stage_results_stream_cursor_input]!" ], "where": [ - 3886 + 4155 ] } ], "v_team_tournament_results": [ - 3927, + 4196, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "v_team_tournament_results_aggregate": [ - 3928, + 4197, { "distinct_on": [ - 3953, + 4222, "[v_team_tournament_results_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 3952, + 4221, "[v_team_tournament_results_order_by!]" ], "where": [ - 3946 + 4215 ] } ], "v_team_tournament_results_stream": [ - 3927, + 4196, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 3968, + 4237, "[v_team_tournament_results_stream_cursor_input]!" ], "where": [ - 3946 + 4215 ] } ], "v_tournament_player_stats": [ - 3978, + 4247, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "v_tournament_player_stats_aggregate": [ - 3979, + 4248, { "distinct_on": [ - 4004, + 4273, "[v_tournament_player_stats_select_column!]" ], "limit": [ - 34 + 35 ], "offset": [ - 34 + 35 ], "order_by": [ - 4003, + 4272, "[v_tournament_player_stats_order_by!]" ], "where": [ - 3997 + 4266 ] } ], "v_tournament_player_stats_stream": [ - 3978, + 4247, { "batch_size": [ - 34, + 35, "Int!" ], "cursor": [ - 4019, + 4288, "[v_tournament_player_stats_stream_cursor_input]!" ], "where": [ - 3997 + 4266 ] } ], "__typename": [ - 63 + 64 ] } } diff --git a/hasura/enums/draft-game-captain-selection.sql b/hasura/enums/draft-game-captain-selection.sql new file mode 100644 index 00000000..fb946ddd --- /dev/null +++ b/hasura/enums/draft-game-captain-selection.sql @@ -0,0 +1,5 @@ +insert into e_draft_game_captain_selection ("value", "description") values + ('TopEloTwo', 'Top 2 by Rank'), + ('HostAndNext', 'Host and Next Highest'), + ('RandomTwo', 'Random Two') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-draft-order.sql b/hasura/enums/draft-game-draft-order.sql new file mode 100644 index 00000000..9ffd839f --- /dev/null +++ b/hasura/enums/draft-game-draft-order.sql @@ -0,0 +1,4 @@ +insert into e_draft_game_draft_order ("value", "description") values + ('Snake', 'Snake (1-2-2-2-1)'), + ('Alternating', 'Alternating') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-modes.sql b/hasura/enums/draft-game-modes.sql new file mode 100644 index 00000000..86a03039 --- /dev/null +++ b/hasura/enums/draft-game-modes.sql @@ -0,0 +1,6 @@ +insert into e_draft_game_mode ("value", "description") values + ('Captains', 'Two Captains Draft'), + ('Host', 'Host Assigns Teams'), + ('Pug', 'Auto-Split Teams'), + ('Teams', 'Pre-Made Teams') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/enums/draft-game-statuses.sql b/hasura/enums/draft-game-statuses.sql new file mode 100644 index 00000000..a8b7ce44 --- /dev/null +++ b/hasura/enums/draft-game-statuses.sql @@ -0,0 +1,9 @@ +insert into e_draft_game_status ("value", "description") values + ('Open', 'Accepting Players'), + ('Filled', 'Lobby Full'), + ('SelectingCaptains', 'Selecting Captains'), + ('Drafting', 'Drafting Players'), + ('CreatingMatch', 'Creating Match'), + ('Completed', 'Completed'), + ('Canceled', 'Canceled') +on conflict(value) do update set "description" = EXCLUDED."description" diff --git a/hasura/metadata/actions.graphql b/hasura/metadata/actions.graphql index 753a6480..e150e4d3 100644 --- a/hasura/metadata/actions.graphql +++ b/hasura/metadata/actions.graphql @@ -453,6 +453,10 @@ type Mutation { scanOrphanedDemos: ScanStartedOutput } +type Mutation { + rescanTldrNews: SuccessOutput +} + type Mutation { orphanedDemosScanResult: OrphanScanResultOutput } @@ -1274,3 +1278,34 @@ type TableSizeInfo { estimated_dead_tuple_bytes: Float! } +type CreateDraftGameOutput { + draftGameId: uuid! +} + +type Mutation { + createDraftGame( + settings: jsonb! + ): CreateDraftGameOutput +} + +type Mutation { + updateDraftGame( + draftGameId: uuid! + settings: jsonb! + ): SuccessOutput +} + +type Mutation { + joinDraftGame( + draftGameId: uuid! + inviteCode: String + ): SuccessOutput +} + +type Mutation { + joinDraftGameAsParty( + draftGameId: uuid! + inviteCode: String + ): SuccessOutput +} + diff --git a/hasura/metadata/actions.yaml b/hasura/metadata/actions.yaml index 2083050c..dc3a2934 100644 --- a/hasura/metadata/actions.yaml +++ b/hasura/metadata/actions.yaml @@ -1,4 +1,36 @@ actions: + - name: createDraftGame + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: user + comment: createDraftGame + - name: updateDraftGame + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: user + comment: updateDraftGame + - name: joinDraftGame + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: user + comment: joinDraftGame + - name: joinDraftGameAsParty + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: user + comment: joinDraftGameAsParty - name: PreviewTournamentMatchReset definition: kind: synchronous @@ -598,6 +630,14 @@ actions: permissions: - role: administrator comment: Scan S3 for objects not referenced in the database (admin only). Runs in the background; results land in the logs and orphanedDemosScanResult. + - name: rescanTldrNews + definition: + kind: synchronous + handler: '{{HASURA_GRAPHQL_ACTIONS_HOOK}}' + forward_client_headers: true + permissions: + - role: administrator + comment: Re-scan tl;dr for new news articles (admin only). Enqueues a background scrape job; no-op if the integration is disabled. - name: orphanedDemosScanResult definition: kind: synchronous diff --git a/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml b/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml new file mode 100644 index 00000000..a26e966b --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_game_picks.yaml @@ -0,0 +1,80 @@ +table: + name: draft_game_picks + schema: public +object_relationships: + - name: draft_game + using: + foreign_key_constraint_on: draft_game_id + - name: captain + using: + foreign_key_constraint_on: captain_steam_id + - name: picked + using: + foreign_key_constraint_on: picked_steam_id +select_permissions: + - role: user + permission: + columns: + - id + - draft_game_id + - captain_steam_id + - picked_steam_id + - lineup + - auto_picked + - created_at + filter: + draft_game: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + comment: "" + - role: guest + permission: + columns: + - id + - draft_game_id + - captain_steam_id + - picked_steam_id + - lineup + - auto_picked + - created_at + filter: + draft_game: + access: + _eq: Open + comment: "" +insert_permissions: + - role: user + permission: + check: + draft_game: + status: + _eq: Drafting + columns: + - draft_game_id + - picked_steam_id + comment: "" +event_triggers: + - name: draft_game_pick_events + definition: + enable_manual: false + insert: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 3 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' diff --git a/hasura/metadata/databases/default/tables/public_draft_game_players.yaml b/hasura/metadata/databases/default/tables/public_draft_game_players.yaml new file mode 100644 index 00000000..c1ae9fb8 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_game_players.yaml @@ -0,0 +1,117 @@ +table: + name: draft_game_players + schema: public +object_relationships: + - name: draft_game + using: + foreign_key_constraint_on: draft_game_id + - name: e_draft_game_player_status + using: + foreign_key_constraint_on: status + - name: player + using: + foreign_key_constraint_on: steam_id +select_permissions: + - role: user + permission: + columns: + - draft_game_id + - steam_id + - status + - joined_at + - elo_snapshot + - is_captain + - lineup + - pick_order + filter: + _or: + - steam_id: + _eq: X-Hasura-User-Id + - draft_game: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + comment: "" + - role: guest + permission: + columns: + - draft_game_id + - steam_id + - status + - joined_at + - elo_snapshot + - is_captain + - lineup + - pick_order + filter: + draft_game: + access: + _eq: Open + comment: "" +insert_permissions: + - role: user + permission: + check: + _and: + - _or: + - steam_id: + _eq: X-Hasura-User-Id + - draft_game: + host_steam_id: + _eq: X-Hasura-User-Id + - draft_game: + status: + _eq: Open + - draft_game: + match_id: + _is_null: true + - player: + is_banned: + _eq: false + - player: + is_in_another_match: + _eq: false + columns: + - draft_game_id + - steam_id + comment: "" +update_permissions: + - role: user + permission: + columns: + - status + - lineup + - pick_order + - is_captain + filter: + _or: + - steam_id: + _eq: X-Hasura-User-Id + - draft_game: + host_steam_id: + _eq: X-Hasura-User-Id + comment: "" +delete_permissions: + - role: user + permission: + filter: + _or: + - steam_id: + _eq: X-Hasura-User-Id + - draft_game: + host_steam_id: + _eq: X-Hasura-User-Id + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_draft_games.yaml b/hasura/metadata/databases/default/tables/public_draft_games.yaml new file mode 100644 index 00000000..90f30bfb --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_draft_games.yaml @@ -0,0 +1,212 @@ +table: + name: draft_games + schema: public +object_relationships: + - name: host + using: + foreign_key_constraint_on: host_steam_id + - name: match + using: + foreign_key_constraint_on: match_id + - name: map_pool + using: + foreign_key_constraint_on: map_pool_id + - name: e_draft_game_status + using: + foreign_key_constraint_on: status + - name: e_draft_game_captain_selection + using: + foreign_key_constraint_on: captain_selection + - name: e_draft_game_draft_order + using: + foreign_key_constraint_on: draft_order + - name: e_draft_game_mode + using: + foreign_key_constraint_on: mode + - name: e_lobby_access + using: + foreign_key_constraint_on: access + - name: options + using: + foreign_key_constraint_on: match_options_id + - name: team_1 + using: + foreign_key_constraint_on: team_1_id + - name: team_2 + using: + foreign_key_constraint_on: team_2_id +array_relationships: + - name: players + using: + foreign_key_constraint_on: + column: draft_game_id + table: + name: draft_game_players + schema: public + - name: picks + using: + foreign_key_constraint_on: + column: draft_game_id + table: + name: draft_game_picks + schema: public +select_permissions: + - role: user + permission: + columns: + - id + - host_steam_id + - status + - type + - access + - invite_code + - regions + - map_pool_id + - match_options_id + - team_1_id + - team_2_id + - captain_selection + - draft_order + - mode + - require_approval + - min_elo + - max_elo + - capacity + - inner_squad + - match_id + - current_pick_lineup + - pick_deadline + - expires_at + - created_at + - updated_at + filter: + _or: + - access: + _eq: Open + - host_steam_id: + _eq: X-Hasura-User-Id + - players: + steam_id: + _eq: X-Hasura-User-Id + - _and: + - access: + _eq: Friends + - players: + player: + friends: + steam_id: + _eq: X-Hasura-User-Id + allow_aggregations: true + comment: "" + - role: guest + permission: + columns: + - id + - host_steam_id + - status + - type + - access + - regions + - map_pool_id + - match_options_id + - team_1_id + - team_2_id + - captain_selection + - draft_order + - mode + - require_approval + - min_elo + - max_elo + - capacity + - inner_squad + - match_id + - current_pick_lineup + - pick_deadline + - created_at + - updated_at + filter: + access: + _eq: Open + allow_aggregations: true + comment: "" +insert_permissions: + - role: user + permission: + check: + type: + _in: + - Competitive + - Wingman + - Duel + - Premier + - Faceit + set: + host_steam_id: x-hasura-user-id + columns: + - type + - mode + - access + - regions + - captain_selection + - draft_order + - require_approval + - team_1_id + - team_2_id + - inner_squad + - map_pool_id + - min_elo + - max_elo + - match_options_id + comment: "" +update_permissions: + - role: user + permission: + columns: + - type + - mode + - access + - regions + - captain_selection + - draft_order + - require_approval + - team_1_id + - team_2_id + - inner_squad + - map_pool_id + - min_elo + - max_elo + - match_options_id + - status + - pick_deadline + - expires_at + filter: + host_steam_id: + _eq: X-Hasura-User-Id + comment: "" +delete_permissions: + - role: user + permission: + filter: + _and: + - host_steam_id: + _eq: X-Hasura-User-Id + - status: + _eq: Open + - match_id: + _is_null: true + comment: "" +event_triggers: + - name: draft_game_events + definition: + enable_manual: false + insert: + columns: '*' + update: + columns: '*' + delete: + columns: '*' + retry_conf: + interval_sec: 10 + num_retries: 3 + timeout_sec: 60 + webhook: '{{HASURA_GRAPHQL_EVENT_HOOK}}' diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml new file mode 100644 index 00000000..888559cd --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_captain_selection.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_captain_selection + 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_draft_game_draft_order.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml new file mode 100644 index 00000000..62eb8867 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_draft_order.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_draft_order + 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_draft_game_mode.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml new file mode 100644 index 00000000..fdf120aa --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_mode.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_mode + 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_draft_game_player_status.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml new file mode 100644 index 00000000..88695d8c --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_player_status.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_player_status + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml b/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml new file mode 100644 index 00000000..d1038498 --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_e_draft_game_status.yaml @@ -0,0 +1,12 @@ +table: + name: e_draft_game_status + schema: public +is_enum: true +select_permissions: + - role: guest + permission: + columns: + - description + - value + filter: {} + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_match_clips.yaml b/hasura/metadata/databases/default/tables/public_match_clips.yaml index 3a80bab0..2a65af9a 100644 --- a/hasura/metadata/databases/default/tables/public_match_clips.yaml +++ b/hasura/metadata/databases/default/tables/public_match_clips.yaml @@ -123,4 +123,5 @@ select_permissions: lineup_players: steam_id: _eq: X-Hasura-User-Id + allow_aggregations: true comment: "" diff --git a/hasura/metadata/databases/default/tables/public_matches.yaml b/hasura/metadata/databases/default/tables/public_matches.yaml index f3b69434..b3a35e8c 100644 --- a/hasura/metadata/databases/default/tables/public_matches.yaml +++ b/hasura/metadata/databases/default/tables/public_matches.yaml @@ -64,6 +64,13 @@ array_relationships: remote_table: name: v_player_elo schema: public + - name: draft_games + using: + foreign_key_constraint_on: + column: match_id + table: + name: draft_games + schema: public - name: invites using: foreign_key_constraint_on: diff --git a/hasura/metadata/databases/default/tables/public_news_articles.yaml b/hasura/metadata/databases/default/tables/public_news_articles.yaml new file mode 100644 index 00000000..680f977f --- /dev/null +++ b/hasura/metadata/databases/default/tables/public_news_articles.yaml @@ -0,0 +1,24 @@ +table: + name: news_articles + schema: public +select_permissions: + - role: guest + permission: + columns: + - id + - source + - issue_number + - slug + - url + - title + - teaser + - content_html + - cover_image_url + - author + - published_at + - scraped_at + - created_at + - updated_at + filter: {} + allow_aggregations: true + comment: "" diff --git a/hasura/metadata/databases/default/tables/public_players.yaml b/hasura/metadata/databases/default/tables/public_players.yaml index 144f9d2f..cdc7470a 100644 --- a/hasura/metadata/databases/default/tables/public_players.yaml +++ b/hasura/metadata/databases/default/tables/public_players.yaml @@ -447,6 +447,7 @@ select_permissions: - faceit_updated_at - faceit_url - language + - last_read_news_at - last_sign_in_at - name - name_registered @@ -487,6 +488,7 @@ select_permissions: columns: - avatar_url - country + - last_read_news_at - custom_avatar_url - faceit_elo - faceit_nickname @@ -538,6 +540,7 @@ update_permissions: - country - discord_id - language + - last_read_news_at - name - profile_url - role @@ -550,6 +553,7 @@ update_permissions: columns: - country - language + - last_read_news_at - show_match_ready_modal filter: steam_id: diff --git a/hasura/metadata/databases/default/tables/tables.yaml b/hasura/metadata/databases/default/tables/tables.yaml index ec7eb2da..fc67dfa3 100644 --- a/hasura/metadata/databases/default/tables/tables.yaml +++ b/hasura/metadata/databases/default/tables/tables.yaml @@ -4,7 +4,15 @@ - "!include public_api_keys.yaml" - "!include public_clip_render_jobs.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_check_in_settings.yaml" +- "!include public_e_draft_game_captain_selection.yaml" +- "!include public_e_draft_game_draft_order.yaml" +- "!include public_e_draft_game_mode.yaml" +- "!include public_e_draft_game_player_status.yaml" +- "!include public_e_draft_game_status.yaml" - "!include public_e_friend_status.yaml" - "!include public_e_game_cfg_types.yaml" - "!include public_e_game_server_node_statuses.yaml" @@ -54,6 +62,7 @@ - "!include public_match_streams.yaml" - "!include public_match_type_cfgs.yaml" - "!include public_matches.yaml" +- "!include public_news_articles.yaml" - "!include public_notifications.yaml" - "!include public_pending_match_import_players.yaml" - "!include public_pending_match_imports.yaml" diff --git a/hasura/migrations/default/1860000000100_draft_rooms/down.sql b/hasura/migrations/default/1860000000100_draft_rooms/down.sql new file mode 100644 index 00000000..23e3dc21 --- /dev/null +++ b/hasura/migrations/default/1860000000100_draft_rooms/down.sql @@ -0,0 +1,15 @@ +DROP TABLE "public"."draft_game_picks"; + +DROP TABLE "public"."draft_game_players"; + +DROP TABLE "public"."draft_games"; + +DROP TABLE "public"."e_draft_game_player_status"; + +DROP TABLE "public"."e_draft_game_mode"; + +DROP TABLE "public"."e_draft_game_draft_order"; + +DROP TABLE "public"."e_draft_game_captain_selection"; + +DROP TABLE "public"."e_draft_game_status"; diff --git a/hasura/migrations/default/1860000000100_draft_rooms/up.sql b/hasura/migrations/default/1860000000100_draft_rooms/up.sql new file mode 100644 index 00000000..a4be7102 --- /dev/null +++ b/hasura/migrations/default/1860000000100_draft_rooms/up.sql @@ -0,0 +1,176 @@ +CREATE TABLE "public"."e_draft_game_status" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_status" ("value", "description") VALUES + ('Open', 'Accepting Players'), + ('Filled', 'Lobby Full'), + ('SelectingCaptains', 'Selecting Captains'), + ('Drafting', 'Drafting Players'), + ('CreatingMatch', 'Creating Match'), + ('Completed', 'Completed'), + ('Canceled', 'Canceled') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_captain_selection" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_captain_selection" ("value", "description") VALUES + ('TopEloTwo', 'Top 2 by Rank'), + ('HostAndNext', 'Host and Next Highest'), + ('RandomTwo', 'Random Two') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_draft_order" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_draft_order" ("value", "description") VALUES + ('Snake', 'Snake (1-2-2-2-1)'), + ('Alternating', 'Alternating') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_mode" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_mode" ("value", "description") VALUES + ('Captains', 'Two Captains Draft'), + ('Host', 'Host Assigns Teams'), + ('Pug', 'Auto-Split Teams'), + ('Teams', 'Pre-Made Teams') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."e_draft_game_player_status" ("value" text NOT NULL, "description" text NOT NULL, PRIMARY KEY ("value"), UNIQUE ("value")); + +INSERT INTO "public"."e_draft_game_player_status" ("value", "description") VALUES + ('Accepted', 'Player Accepted Into Game'), + ('Requested', 'Player Requested To Join'), + ('Waitlist', 'Player On Waitlist') +ON CONFLICT (value) DO NOTHING; + +CREATE TABLE "public"."draft_games" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "host_steam_id" bigint NOT NULL, + "status" text NOT NULL DEFAULT 'Open', + "type" text NOT NULL, + "mode" text NOT NULL DEFAULT 'Captains', + "access" text NOT NULL DEFAULT 'Open', + "invite_code" uuid NOT NULL DEFAULT gen_random_uuid(), + "regions" text[] NOT NULL DEFAULT '{}', + "map_pool_id" uuid, + "match_options_id" uuid, + "captain_selection" text NOT NULL DEFAULT 'TopEloTwo', + "draft_order" text NOT NULL DEFAULT 'Snake', + "min_elo" integer, + "max_elo" integer, + "capacity" integer NOT NULL, + "require_approval" boolean NOT NULL DEFAULT false, + "match_id" uuid, + "team_1_id" uuid, + "team_2_id" uuid, + "inner_squad" boolean NOT NULL DEFAULT false, + "current_pick_lineup" integer, + "pick_deadline" timestamptz, + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id") +); + +alter table "public"."draft_games" + add constraint "draft_games_host_steam_id_fkey" + foreign key ("host_steam_id") + references "public"."players" ("steam_id") on update cascade on delete cascade; + +alter table "public"."draft_games" + add constraint "draft_games_status_fkey" + foreign key ("status") + references "public"."e_draft_game_status" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_type_fkey" + foreign key ("type") + references "public"."e_match_types" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_mode_fkey" + foreign key ("mode") + references "public"."e_draft_game_mode" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_access_fkey" + foreign key ("access") + references "public"."e_lobby_access" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_captain_selection_fkey" + foreign key ("captain_selection") + references "public"."e_draft_game_captain_selection" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_draft_order_fkey" + foreign key ("draft_order") + references "public"."e_draft_game_draft_order" ("value") on update cascade on delete restrict; + +alter table "public"."draft_games" + add constraint "draft_games_map_pool_id_fkey" + foreign key ("map_pool_id") + references "public"."map_pools" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_match_options_id_fkey" + foreign key ("match_options_id") + references "public"."match_options" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_match_id_fkey" + foreign key ("match_id") + references "public"."matches" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_team_1_id_fkey" + foreign key ("team_1_id") + references "public"."teams" ("id") on update cascade on delete set null; + +alter table "public"."draft_games" + add constraint "draft_games_team_2_id_fkey" + foreign key ("team_2_id") + references "public"."teams" ("id") on update cascade on delete set null; + +CREATE INDEX "draft_games_status_idx" ON "public"."draft_games" ("status"); +CREATE INDEX "draft_games_host_steam_id_idx" ON "public"."draft_games" ("host_steam_id"); +CREATE INDEX "draft_games_map_pool_id_idx" ON "public"."draft_games" ("map_pool_id"); +CREATE INDEX "draft_games_match_options_id_idx" ON "public"."draft_games" ("match_options_id"); +CREATE INDEX "draft_games_match_id_idx" ON "public"."draft_games" ("match_id"); +CREATE INDEX "draft_games_team_1_id_idx" ON "public"."draft_games" ("team_1_id"); +CREATE INDEX "draft_games_team_2_id_idx" ON "public"."draft_games" ("team_2_id"); +CREATE UNIQUE INDEX "draft_games_invite_code_key" ON "public"."draft_games" ("invite_code"); + +CREATE TABLE "public"."draft_game_players" ( + "draft_game_id" uuid NOT NULL, + "steam_id" bigint NOT NULL, + "status" text NOT NULL DEFAULT 'Accepted', + "joined_at" timestamptz NOT NULL DEFAULT now(), + "elo_snapshot" integer, + "is_captain" boolean NOT NULL DEFAULT false, + "lineup" integer, + "pick_order" integer, + PRIMARY KEY ("draft_game_id", "steam_id"), + FOREIGN KEY ("draft_game_id") REFERENCES "public"."draft_games" ("id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("status") REFERENCES "public"."e_draft_game_player_status" ("value") ON UPDATE cascade ON DELETE restrict +); + +CREATE INDEX "draft_game_players_steam_id_idx" ON "public"."draft_game_players" ("steam_id"); +CREATE UNIQUE INDEX "draft_game_players_captain_lineup_key" ON "public"."draft_game_players" ("draft_game_id", "lineup") WHERE "is_captain"; + +CREATE TABLE "public"."draft_game_picks" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "draft_game_id" uuid NOT NULL, + "captain_steam_id" bigint NOT NULL, + "picked_steam_id" bigint NOT NULL, + "lineup" integer NOT NULL, + "auto_picked" boolean NOT NULL DEFAULT false, + "created_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + FOREIGN KEY ("draft_game_id") REFERENCES "public"."draft_games" ("id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("captain_steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade, + FOREIGN KEY ("picked_steam_id") REFERENCES "public"."players" ("steam_id") ON UPDATE cascade ON DELETE cascade +); + +CREATE INDEX "draft_game_picks_draft_game_id_idx" ON "public"."draft_game_picks" ("draft_game_id"); +CREATE INDEX "draft_game_picks_captain_steam_id_idx" ON "public"."draft_game_picks" ("captain_steam_id"); +CREATE INDEX "draft_game_picks_picked_steam_id_idx" ON "public"."draft_game_picks" ("picked_steam_id"); diff --git a/hasura/migrations/default/1860000000200_news/down.sql b/hasura/migrations/default/1860000000200_news/down.sql new file mode 100644 index 00000000..bf196895 --- /dev/null +++ b/hasura/migrations/default/1860000000200_news/down.sql @@ -0,0 +1,3 @@ +ALTER TABLE "public"."players" DROP COLUMN IF EXISTS "last_read_news_at"; + +DROP TABLE IF EXISTS "public"."news_articles"; diff --git a/hasura/migrations/default/1860000000200_news/up.sql b/hasura/migrations/default/1860000000200_news/up.sql new file mode 100644 index 00000000..bc70ea4a --- /dev/null +++ b/hasura/migrations/default/1860000000200_news/up.sql @@ -0,0 +1,23 @@ +CREATE TABLE IF NOT EXISTS "public"."news_articles" ( + "id" uuid NOT NULL DEFAULT gen_random_uuid(), + "source" text NOT NULL DEFAULT 'tldr', + "issue_number" integer, + "slug" text, + "url" text NOT NULL, + "title" text NOT NULL, + "teaser" text, + "content_html" text, + "cover_image_url" text, + "author" text, + "published_at" timestamptz, + "scraped_at" timestamptz NOT NULL DEFAULT now(), + "created_at" timestamptz NOT NULL DEFAULT now(), + "updated_at" timestamptz NOT NULL DEFAULT now(), + PRIMARY KEY ("id"), + CONSTRAINT "news_articles_url_key" UNIQUE ("url") +); + +CREATE INDEX IF NOT EXISTS "news_articles_published_at_idx" ON "public"."news_articles" ("published_at" DESC); +CREATE INDEX IF NOT EXISTS "news_articles_source_idx" ON "public"."news_articles" ("source"); + +ALTER TABLE "public"."players" ADD COLUMN IF NOT EXISTS "last_read_news_at" timestamptz; diff --git a/hasura/migrations/default/1860000000300_draft_games_expires_at/down.sql b/hasura/migrations/default/1860000000300_draft_games_expires_at/down.sql new file mode 100644 index 00000000..f6a1962d --- /dev/null +++ b/hasura/migrations/default/1860000000300_draft_games_expires_at/down.sql @@ -0,0 +1 @@ +ALTER TABLE "public"."draft_games" DROP COLUMN IF EXISTS "expires_at"; diff --git a/hasura/migrations/default/1860000000300_draft_games_expires_at/up.sql b/hasura/migrations/default/1860000000300_draft_games_expires_at/up.sql new file mode 100644 index 00000000..9549d499 --- /dev/null +++ b/hasura/migrations/default/1860000000300_draft_games_expires_at/up.sql @@ -0,0 +1 @@ +ALTER TABLE "public"."draft_games" ADD COLUMN IF NOT EXISTS "expires_at" timestamptz; diff --git a/hasura/triggers/draft_game_picks.sql b/hasura/triggers/draft_game_picks.sql new file mode 100644 index 00000000..1e90b5cf --- /dev/null +++ b/hasura/triggers/draft_game_picks.sql @@ -0,0 +1,34 @@ +CREATE OR REPLACE FUNCTION public.tbi_draft_game_picks() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + game public.draft_games%ROWTYPE; + actor text; + captain public.draft_game_players%ROWTYPE; +BEGIN + actor := NULLIF(current_setting('hasura.user', true), '')::json ->> 'x-hasura-user-id'; + + IF actor IS NULL THEN + RETURN NEW; + END IF; + + SELECT * INTO game FROM public.draft_games WHERE id = NEW.draft_game_id; + + SELECT * INTO captain FROM public.draft_game_players + WHERE draft_game_id = NEW.draft_game_id + AND is_captain = true + AND lineup = game.current_pick_lineup; + + IF NOT FOUND OR captain.steam_id::text <> actor THEN + RAISE EXCEPTION 'It is not your turn to pick' USING ERRCODE = '22000'; + END IF; + + NEW.captain_steam_id := captain.steam_id; + NEW.lineup := game.current_pick_lineup; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbi_draft_game_picks ON public.draft_game_picks; +CREATE TRIGGER tbi_draft_game_picks BEFORE INSERT ON public.draft_game_picks FOR EACH ROW EXECUTE FUNCTION public.tbi_draft_game_picks(); diff --git a/hasura/triggers/draft_game_players.sql b/hasura/triggers/draft_game_players.sql new file mode 100644 index 00000000..660250f6 --- /dev/null +++ b/hasura/triggers/draft_game_players.sql @@ -0,0 +1,133 @@ +CREATE OR REPLACE FUNCTION public.tbi_draft_game_players() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + game public.draft_games%ROWTYPE; + actor text; + accepted_count integer; + player_elo jsonb; +BEGIN + SELECT * INTO game FROM public.draft_games WHERE id = NEW.draft_game_id; + + IF NEW.elo_snapshot IS NULL THEN + SELECT elo INTO player_elo FROM public.players WHERE steam_id = NEW.steam_id; + NEW.elo_snapshot := COALESCE(NULLIF(player_elo ->> lower(game.type), '')::numeric::integer, 5000); + END IF; + + actor := NULLIF(current_setting('hasura.user', true), '')::json ->> 'x-hasura-user-id'; + + IF actor IS NULL THEN + RETURN NEW; + END IF; + + SELECT count(*) INTO accepted_count + FROM public.draft_game_players + WHERE draft_game_id = NEW.draft_game_id AND status = 'Accepted'; + + IF NEW.steam_id = game.host_steam_id THEN + NEW.status := 'Accepted'; + ELSIF actor = game.host_steam_id::text THEN + NEW.status := 'Accepted'; + ELSIF accepted_count >= game.capacity OR game.status <> 'Open' THEN + NEW.status := 'Waitlist'; + ELSIF game.require_approval THEN + NEW.status := 'Requested'; + ELSE + NEW.status := 'Accepted'; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbi_draft_game_players ON public.draft_game_players; +CREATE TRIGGER tbi_draft_game_players BEFORE INSERT ON public.draft_game_players FOR EACH ROW EXECUTE FUNCTION public.tbi_draft_game_players(); + + +CREATE OR REPLACE FUNCTION public.tai_draft_game_players() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + IF NEW.status = 'Accepted' THEN + DELETE FROM public.draft_game_players dp + USING public.draft_games g + WHERE dp.draft_game_id = g.id + AND dp.steam_id = NEW.steam_id + AND dp.draft_game_id <> NEW.draft_game_id + AND g.status NOT IN ('Completed', 'Canceled') + AND g.host_steam_id <> NEW.steam_id; + END IF; + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tai_draft_game_players ON public.draft_game_players; +CREATE TRIGGER tai_draft_game_players AFTER INSERT ON public.draft_game_players FOR EACH ROW EXECUTE FUNCTION public.tai_draft_game_players(); + + +CREATE OR REPLACE FUNCTION public.tad_draft_game_players() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + game public.draft_games%ROWTYPE; + remaining integer; + accepted_count integer; + new_host bigint; + promote_steam_id bigint; +BEGIN + SELECT * INTO game FROM public.draft_games WHERE id = OLD.draft_game_id; + IF NOT FOUND THEN + RETURN OLD; + END IF; + + IF game.status IN ('Completed', 'CreatingMatch') OR game.match_id IS NOT NULL THEN + RETURN OLD; + END IF; + + -- leaving once the draft has started tears the whole draft down + IF game.status <> 'Open' THEN + DELETE FROM public.draft_games WHERE id = game.id; + RETURN OLD; + END IF; + + SELECT count(*) INTO remaining FROM public.draft_game_players WHERE draft_game_id = game.id; + IF remaining = 0 THEN + DELETE FROM public.draft_games WHERE id = game.id; + RETURN OLD; + END IF; + + IF OLD.steam_id = game.host_steam_id THEN + SELECT steam_id INTO new_host + FROM public.draft_game_players + WHERE draft_game_id = game.id AND status = 'Accepted' + ORDER BY joined_at ASC LIMIT 1; + + IF new_host IS NULL THEN + DELETE FROM public.draft_games WHERE id = game.id; + RETURN OLD; + END IF; + + UPDATE public.draft_games SET host_steam_id = new_host, updated_at = now() WHERE id = game.id; + END IF; + + LOOP + SELECT count(*) INTO accepted_count + FROM public.draft_game_players WHERE draft_game_id = game.id AND status = 'Accepted'; + EXIT WHEN accepted_count >= game.capacity; + + SELECT steam_id INTO promote_steam_id + FROM public.draft_game_players + WHERE draft_game_id = game.id AND status = 'Waitlist' + ORDER BY joined_at ASC LIMIT 1; + EXIT WHEN promote_steam_id IS NULL; + + UPDATE public.draft_game_players SET status = 'Accepted' + WHERE draft_game_id = game.id AND steam_id = promote_steam_id; + END LOOP; + + RETURN OLD; +END; +$$; + +DROP TRIGGER IF EXISTS tad_draft_game_players ON public.draft_game_players; +CREATE TRIGGER tad_draft_game_players AFTER DELETE ON public.draft_game_players FOR EACH ROW EXECUTE FUNCTION public.tad_draft_game_players(); diff --git a/hasura/triggers/draft_games.sql b/hasura/triggers/draft_games.sql new file mode 100644 index 00000000..24fd6655 --- /dev/null +++ b/hasura/triggers/draft_games.sql @@ -0,0 +1,82 @@ +CREATE OR REPLACE FUNCTION public.tbi_draft_games() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + NEW.capacity := CASE NEW.type + WHEN 'Duel' THEN 2 + WHEN 'Wingman' THEN 4 + ELSE 10 + END; + + IF NEW.mode = 'Teams' AND NEW.team_1_id IS NOT NULL AND NEW.team_2_id IS NOT NULL THEN + NEW.access := 'Private'; + END IF; + + NEW.expires_at := now() + interval '30 minutes'; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbi_draft_games ON public.draft_games; +CREATE TRIGGER tbi_draft_games BEFORE INSERT ON public.draft_games FOR EACH ROW EXECUTE FUNCTION public.tbi_draft_games(); + + +CREATE OR REPLACE FUNCTION public.tbu_draft_games() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +DECLARE + accepted_count integer; + team1 integer; + team2 integer; +BEGIN + IF NEW.expires_at IS DISTINCT FROM OLD.expires_at AND NEW.expires_at IS NOT NULL THEN + NEW.expires_at := LEAST(NEW.expires_at, NEW.created_at + interval '120 minutes'); + END IF; + + -- Reject an unready "start" so the row can never get stuck in Filled. + IF OLD.status = 'Open' AND NEW.status = 'Filled' THEN + SELECT + count(*) FILTER (WHERE status = 'Accepted'), + count(*) FILTER (WHERE status = 'Accepted' AND lineup = 1), + count(*) FILTER (WHERE status = 'Accepted' AND lineup = 2) + INTO accepted_count, team1, team2 + FROM public.draft_game_players + WHERE draft_game_id = NEW.id; + + IF NEW.mode = 'Teams' THEN + IF NEW.team_1_id IS NULL THEN + RAISE EXCEPTION 'Select at least one team first' USING ERRCODE = '22000'; + END IF; + ELSIF NEW.mode = 'Host' THEN + IF team1 <> NEW.capacity / 2 OR team2 <> NEW.capacity / 2 THEN + RAISE EXCEPTION 'Assign all players into balanced teams first' USING ERRCODE = '22000'; + END IF; + ELSE + IF accepted_count <> NEW.capacity THEN + RAISE EXCEPTION 'The lobby must be full to start' USING ERRCODE = '22000'; + END IF; + END IF; + END IF; + + RETURN NEW; +END; +$$; + +DROP TRIGGER IF EXISTS tbu_draft_games ON public.draft_games; +CREATE TRIGGER tbu_draft_games BEFORE UPDATE ON public.draft_games FOR EACH ROW EXECUTE FUNCTION public.tbu_draft_games(); + + +CREATE OR REPLACE FUNCTION public.tad_draft_games() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + IF OLD.match_options_id IS NOT NULL THEN + DELETE FROM public.match_options WHERE id = OLD.match_options_id; + END IF; + RETURN OLD; +END; +$$; + +DROP TRIGGER IF EXISTS tad_draft_games ON public.draft_games; +CREATE TRIGGER tad_draft_games AFTER DELETE ON public.draft_games FOR EACH ROW EXECUTE FUNCTION public.tad_draft_games(); diff --git a/hasura/triggers/matches.sql b/hasura/triggers/matches.sql index 01595c7a..fc3095d7 100644 --- a/hasura/triggers/matches.sql +++ b/hasura/triggers/matches.sql @@ -131,17 +131,17 @@ BEGIN VALUES (NEW.lineup_2_id, member.player_steam_id); END LOOP; END IF; - + SELECT l.id INTO _lobby_id FROM lobbies l INNER JOIN lobby_players lp ON lp.lobby_id = l.id WHERE lp.steam_id = (current_setting('hasura.user', true)::jsonb ->> 'x-hasura-user-id')::bigint - AND lp.status = 'Accepted'; + AND lp.status = 'Accepted'; IF (_lobby_id IS NOT NULL AND (lineup_1_team_id IS NULL OR lineup_2_team_id IS NULL)) THEN - SELECT array_agg(lp.steam_id) INTO lobby_players + SELECT array_agg(lp.steam_id) INTO lobby_players FROM lobby_players lp WHERE lp.lobby_id = _lobby_id AND lp.status = 'Accepted'; @@ -153,7 +153,7 @@ BEGIN ELSIF array_length(lobby_players, 1) > _max_players_per_lineup * 2 THEN RAISE EXCEPTION USING ERRCODE = '22000', MESSAGE = 'Too many players in lobby - maximum ' || (_max_players_per_lineup * 2) || ' players allowed'; END IF; - + FOR i IN SELECT steam_id, row_number() OVER () as rn, count(*) OVER () as total @@ -468,3 +468,16 @@ $$; DROP TRIGGER IF EXISTS tad_matches ON public.matches; CREATE TRIGGER tad_matches AFTER DELETE ON public.matches FOR EACH ROW EXECUTE FUNCTION public.tad_matches(); + + +CREATE OR REPLACE FUNCTION public.tbd_matches() RETURNS TRIGGER + LANGUAGE plpgsql + AS $$ +BEGIN + DELETE FROM public.draft_games WHERE match_id = OLD.id; + RETURN OLD; +END; +$$; + +DROP TRIGGER IF EXISTS tbd_matches ON public.matches; +CREATE TRIGGER tbd_matches BEFORE DELETE ON public.matches FOR EACH ROW EXECUTE FUNCTION public.tbd_matches(); diff --git a/hasura/triggers/player_sanctions.sql b/hasura/triggers/player_sanctions.sql index 83be3c65..a7de120c 100644 --- a/hasura/triggers/player_sanctions.sql +++ b/hasura/triggers/player_sanctions.sql @@ -3,6 +3,7 @@ CREATE OR REPLACE FUNCTION public.tau_player_sanctions() RETURNS TRIGGER AS $$ BEGIN IF NEW.type = 'ban' + AND NEW.sanctioned_by_steam_id IS NULL AND OLD.deleted_at IS NULL AND NEW.deleted_at IS NOT NULL THEN UPDATE public.players diff --git a/package.json b/package.json index 0e91dfc0..4b7d8a4a 100644 --- a/package.json +++ b/package.json @@ -52,6 +52,7 @@ "bullmq": "^5.56.0", "cache-manager": "^7.0.1", "cache-manager-redis-store": "^3.0.1", + "cheerio": "^1.0.0", "connect-redis": "^7.1.0", "discord.js": "^14.14.1", "express-session": "^1.18.0", @@ -71,6 +72,7 @@ "rcon-client": "^4.2.4", "reflect-metadata": "^0.2.0", "rxjs": "^7.8.1", + "sanitize-html": "^2.13.0", "sharp": "^0.33.5", "steam-user": "^5.2.2", "turndown": "^7.2.0", @@ -97,6 +99,7 @@ "@types/passport-steam": "^1.0.5", "@types/pg": "^8.11.5", "@types/pg-cursor": "^2.7.2", + "@types/sanitize-html": "^2.13.0", "@types/supertest": "^6.0.2", "@types/turndown": "^5.0.5", "@typescript-eslint/eslint-plugin": "^8.1.0", diff --git a/src/app.module.ts b/src/app.module.ts index 94fc59e7..a1d712d0 100644 --- a/src/app.module.ts +++ b/src/app.module.ts @@ -26,6 +26,7 @@ import { SocketsModule } from "./sockets/sockets.module"; import { TailscaleModule } from "./tailscale/tailscale.module"; import { GameServerNodeModule } from "./game-server-node/game-server-node.module"; import { MatchMaking } from "./matchmaking/matchmaking.module"; +import { DraftGamesModule } from "./draft-games/draft-games.module"; import { SystemModule } from "./system/system.module"; import { NotificationsModule } from "./notifications/notifications.module"; import { ChatModule } from "./chat/chat.module"; @@ -50,6 +51,7 @@ import { FixturesModule } from "./fixtures/fixtures.module"; import { TournamentsModule } from "./tournaments/tournaments.module"; import { FaceitModule } from "./faceit/faceit.module"; import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-history.module"; +import { NewsModule } from "./news/news.module"; @Module({ imports: [ @@ -61,6 +63,7 @@ import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-histo TypeSenseModule, MatchesModule, MatchMaking, + DraftGamesModule, EncryptionModule, CacheModule, S3Module, @@ -140,6 +143,7 @@ import { SteamMatchHistoryModule } from "./steam-match-history/steam-match-histo TournamentsModule, FaceitModule, SteamMatchHistoryModule, + NewsModule, ], providers: [loggerFactory()], controllers: [AppController, QuickConnectController], diff --git a/src/chat/chat.service.ts b/src/chat/chat.service.ts index 08c104d8..7870f745 100644 --- a/src/chat/chat.service.ts +++ b/src/chat/chat.service.ts @@ -128,6 +128,29 @@ export class ChatService { return; } break; + case ChatLobbyType.Draft: { + const { draft_games } = await this.hasuraService.query({ + draft_games: { + __args: { + where: { + id: { _eq: id }, + _or: [ + { access: { _eq: "Open" } }, + { host_steam_id: { _eq: user.steam_id } }, + { players: { steam_id: { _eq: user.steam_id } } }, + ], + }, + }, + id: true, + }, + }); + + if (draft_games.length === 0) { + return; + } + + break; + } case ChatLobbyType.Organizer: if (!isRoleAbove(user.role, "match_organizer")) { return; diff --git a/src/chat/enums/ChatLobbyTypes.ts b/src/chat/enums/ChatLobbyTypes.ts index 8ca631f4..00550df0 100644 --- a/src/chat/enums/ChatLobbyTypes.ts +++ b/src/chat/enums/ChatLobbyTypes.ts @@ -4,4 +4,5 @@ export enum ChatLobbyType { MatchMaking = "matchmaking", Tournament = "tournament", Organizer = "organizers", + Draft = "draft", } diff --git a/src/draft-games/draft-game.service.ts b/src/draft-games/draft-game.service.ts new file mode 100644 index 00000000..c8572279 --- /dev/null +++ b/src/draft-games/draft-game.service.ts @@ -0,0 +1,1283 @@ +import { Queue } from "bullmq"; +import { Logger } from "@nestjs/common"; +import { User } from "../auth/types/User"; +import { InjectQueue } from "@nestjs/bullmq"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { + e_match_types_enum, + e_lobby_access_enum, + e_draft_game_mode_enum, + e_draft_game_draft_order_enum, + e_draft_game_captain_selection_enum, +} from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { ExpectedPlayers } from "src/discord-bot/enums/ExpectedPlayers"; +import { isRoleAbove } from "src/utilities/isRoleAbove"; +import { DraftGame } from "./types/DraftGame"; +import { DraftGameError } from "./types/DraftGameError"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftService } from "./draft.service"; + +export interface CreateDraftGameSettings { + type: e_match_types_enum; + mode?: e_draft_game_mode_enum; + access?: string; + require_approval?: boolean; + regions: Array; + map_pool_id?: string; + captain_selection: e_draft_game_captain_selection_enum; + draft_order: e_draft_game_draft_order_enum; + min_elo?: number; + max_elo?: number; + team_1_id?: string; + team_2_id?: string; + inner_squad?: boolean; + roster?: Array; + keep_lobby_together?: boolean; + options?: Record; +} + +export interface DraftRosterEntry { + steam_id: string; + lineup: number | null; +} + +@Injectable() +export class DraftGameService { + public static readonly DRAFTABLE_TYPES: e_match_types_enum[] = [ + "Competitive", + "Wingman", + "Duel", + ]; + + public static readonly DEFAULT_ELO = 5000; + + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + @Inject(forwardRef(() => DraftService)) + private readonly draftService: DraftService, + @InjectQueue(DraftGameQueues.DraftGames) private queue: Queue, + ) {} + + public static lockKey(draftGameId: string): string { + return `draft-game:${draftGameId}`; + } + + private draftLock(draftGameId: string, callback: () => Promise) { + return this.cache.lock( + DraftGameService.lockKey(draftGameId), + callback, + ) as Promise; + } + + private playerLock(steamId: string, callback: () => Promise) { + return this.cache.lock( + `draft-game:player:${steamId}`, + callback, + ) as Promise; + } + + public async createDraftGame(user: User, settings: CreateDraftGameSettings) { + if (!DraftGameService.DRAFTABLE_TYPES.includes(settings.type)) { + throw new DraftGameError("Invalid draft game type"); + } + + if (settings.mode === "Teams") { + await this.verifyTeamAccess(user, [ + settings.team_1_id, + settings.team_2_id, + ]); + } + + const draftGameId = await this.playerLock(user.steam_id, async () => { + await this.verifyPlayerEligible(user.steam_id); + + const existing = await this.getPlayerActiveDraftGame(user.steam_id); + if (existing) { + throw new DraftGameError("You are already in a draft game"); + } + + const capacity = ExpectedPlayers[settings.type]; + const elo = await this.getPlayerElo(user.steam_id, settings.type); + + const matchOptionsId = await this.createMatchOptions(user, settings); + + const bothTeams = + settings.mode === "Teams" && + !!settings.team_1_id && + !!settings.team_2_id; + const access = ( + bothTeams ? "Private" : settings.access || "Open" + ) as e_lobby_access_enum; + + let inserted; + try { + const { insert_draft_games_one } = await this.hasura.mutation({ + insert_draft_games_one: { + __args: { + object: { + host_steam_id: user.steam_id, + type: settings.type, + mode: settings.mode || "Captains", + access, + match_options_id: matchOptionsId, + team_1_id: settings.team_1_id, + team_2_id: settings.team_2_id, + inner_squad: settings.inner_squad || false, + require_approval: settings.require_approval || false, + regions: settings.regions || [], + map_pool_id: settings.map_pool_id, + captain_selection: settings.captain_selection, + draft_order: settings.draft_order, + min_elo: settings.min_elo, + max_elo: settings.max_elo, + capacity, + players: { + data: [ + { + steam_id: user.steam_id, + elo_snapshot: elo, + status: "Accepted", + }, + ], + }, + }, + }, + id: true, + }, + }); + inserted = insert_draft_games_one; + } catch (error) { + if (matchOptionsId) { + await this.hasura.mutation({ + delete_match_options_by_pk: { + __args: { id: matchOptionsId }, + __typename: true, + }, + }); + } + throw error; + } + + await this.clearOtherRequests(user.steam_id, inserted.id); + + if (settings.mode === "Teams") { + await this.seedDraftPlayers( + inserted.id, + user.steam_id, + settings.roster || [], + settings.type, + ); + } else { + await this.addLobbyMembersToDraft( + user.steam_id, + inserted.id, + settings, + capacity, + ); + } + + return inserted.id; + }); + + return draftGameId; + } + + public async onDraftDeleted(draftGameId: string) { + await this.draftService.removeAllPickTimers(draftGameId); + } + + public async joinDraftGame( + user: User, + draftGameId: string, + inviteCode?: string, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + const terminal = + !!draftGame.match_id || + ["CreatingMatch", "Completed", "Canceled"].includes(draftGame.status); + if (terminal) { + throw new DraftGameError( + "This draft game is no longer accepting players", + ); + } + + if ( + draftGame.players.find((player) => player.steam_id === user.steam_id) + ) { + return; + } + + await this.verifyJoinAccess(user, draftGame, inviteCode); + + const requiresApproval = + draftGame.require_approval && user.steam_id !== draftGame.host_steam_id; + + const started = draftGame.status !== "Open"; + const acceptedCount = this.acceptedPlayers(draftGame).length; + const isFull = acceptedCount >= draftGame.capacity; + + const status = + !started && requiresApproval + ? "Requested" + : started || isFull + ? "Waitlist" + : "Accepted"; + + await this.playerLock(user.steam_id, async () => { + await this.verifyPlayerEligible(user.steam_id); + + if (status !== "Requested") { + const existing = await this.getPlayerActiveDraftGame(user.steam_id); + if (existing) { + throw new DraftGameError("You are already in a draft game"); + } + } + + const elo = await this.getPlayerElo(user.steam_id, draftGame.type); + + if (draftGame.min_elo && elo < draftGame.min_elo) { + throw new DraftGameError("Your rank is too low for this draft game"); + } + + if (draftGame.max_elo && elo > draftGame.max_elo) { + throw new DraftGameError("Your rank is too high for this draft game"); + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: user.steam_id, + elo_snapshot: elo, + status, + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(user.steam_id, draftGameId); + } + }); + }); + } + + private async verifyJoinAccess( + user: User, + draftGame: DraftGame, + inviteCode?: string, + ) { + if (user.steam_id === draftGame.host_steam_id) { + return; + } + if (draftGame.players.find((player) => player.steam_id === user.steam_id)) { + return; + } + + switch (draftGame.access) { + case "Open": + return; + case "Invite": + if (inviteCode !== draftGame.invite_code) { + throw new DraftGameError("A valid invite is required to join"); + } + return; + case "Friends": { + const memberIds = draftGame.players + .map((player) => player.steam_id) + .concat(draftGame.host_steam_id); + + const { my_friends } = await this.hasura.query({ + my_friends: { + __args: { + where: { + steam_id: { _eq: user.steam_id }, + friend_steam_id: { _in: memberIds }, + status: { _eq: "Accepted" }, + }, + }, + friend_steam_id: true, + }, + }); + + if (!my_friends || my_friends.length === 0) { + throw new DraftGameError("This lobby is friends-only"); + } + return; + } + case "Private": + throw new DraftGameError("This lobby is private"); + default: + throw new DraftGameError("This lobby cannot be joined"); + } + } + + private async addLobbyMembersToDraft( + hostSteamId: string, + draftGameId: string, + settings: CreateDraftGameSettings, + capacity: number, + ) { + if (settings.mode === "Teams") { + return; + } + + const members = await this.getPartyMembers(hostSteamId); + const others = members.filter((steamId) => steamId !== hostSteamId); + + if (others.length === 0) { + return; + } + + const candidates = await this.getDraftCandidates(others, settings.type); + + const perTeam = capacity / 2; + const keepTogether = + !!settings.keep_lobby_together && + members.length <= perTeam && + ["Host", "Pug"].includes(settings.mode || ""); + + if (keepTogether) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: hostSteamId }, + _set: { lineup: 1, pick_order: 1 }, + }, + __typename: true, + }, + }); + } + + let accepted = 1; + let teamCount = 1; + + for (const steamId of others) { + if (accepted >= capacity) { + break; + } + + const candidate = candidates.get(steamId); + if (!candidate || !candidate.eligible) { + continue; + } + + const elo = candidate.elo; + if (settings.min_elo && elo < settings.min_elo) { + continue; + } + if (settings.max_elo && elo > settings.max_elo) { + continue; + } + + const nextPickOrder = teamCount + 1; + + const inserted = await this.playerLock(steamId, async () => { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere) { + return false; + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status: "Accepted", + lineup: keepTogether ? 1 : null, + pick_order: keepTogether ? nextPickOrder : null, + }, + }, + __typename: true, + }, + }); + + await this.clearOtherRequests(steamId, draftGameId); + + return true; + }); + + if (!inserted) { + continue; + } + + teamCount++; + accepted++; + } + } + + private async seedDraftPlayers( + draftGameId: string, + hostSteamId: string, + roster: Array, + type: e_match_types_enum, + ) { + const pickOrders: Record = { 1: 0, 2: 0 }; + const seen = new Set(); + + for (const entry of roster) { + const steamId = String(entry.steam_id); + if (seen.has(steamId)) { + continue; + } + seen.add(steamId); + const lineup = + entry.lineup === 1 || entry.lineup === 2 ? entry.lineup : null; + const status = lineup === null ? "Waitlist" : "Accepted"; + const pickOrder = lineup === null ? null : ++pickOrders[lineup]; + const elo = await this.getPlayerElo(steamId, type); + + if (steamId === hostSteamId) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: steamId }, + _set: { status, lineup, pick_order: pickOrder }, + }, + __typename: true, + }, + }); + continue; + } + + await this.playerLock(steamId, async () => { + if (status === "Accepted") { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere && elsewhere !== draftGameId) { + return; + } + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status, + lineup, + pick_order: pickOrder, + }, + on_conflict: { + constraint: "draft_game_players_pkey", + update_columns: ["status", "lineup", "pick_order"], + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(steamId, draftGameId); + } + }); + } + } + + private async reseedDraftPlayers( + draftGameId: string, + hostSteamId: string, + roster: Array, + type: e_match_types_enum, + ) { + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGameId }, + steam_id: { _neq: hostSteamId }, + }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: hostSteamId }, + _set: { + status: "Accepted", + lineup: null, + pick_order: null, + is_captain: false, + }, + }, + __typename: true, + }, + }); + + await this.seedDraftPlayers(draftGameId, hostSteamId, roster, type); + } + + private async getDraftCandidates( + steamIds: Array, + type: e_match_types_enum, + ): Promise> { + const candidates = new Map(); + + if (steamIds.length === 0) { + return candidates; + } + + const { players } = await this.hasura.query({ + players: { + __args: { where: { steam_id: { _in: steamIds } } }, + steam_id: true, + is_banned: true, + matchmaking_cooldown: true, + is_in_another_match: true, + elo: true, + }, + }); + + for (const player of players) { + const eligible = + !player.is_banned && + !player.matchmaking_cooldown && + !player.is_in_another_match; + + const eloMap = player.elo as Record | null | undefined; + const raw = eloMap ? eloMap[type.toLowerCase()] : undefined; + const parsed = raw != null ? Number(raw) : NaN; + const elo = Number.isFinite(parsed) + ? parsed + : DraftGameService.DEFAULT_ELO; + + candidates.set(player.steam_id, { eligible, elo }); + } + + return candidates; + } + + private async getPartyMembers(steamId: string): Promise { + const { players_by_pk } = await this.hasura.query({ + players_by_pk: { + __args: { steam_id: steamId }, + current_lobby_id: true, + }, + }); + + const lobbyId = players_by_pk?.current_lobby_id; + if (!lobbyId) { + return [steamId]; + } + + const { lobbies_by_pk } = await this.hasura.query({ + lobbies_by_pk: { + __args: { id: lobbyId }, + players: { + __args: { where: { status: { _eq: "Accepted" } } }, + steam_id: true, + }, + }, + }); + + const members = (lobbies_by_pk?.players || []).map( + (player) => player.steam_id, + ); + + if (!members.includes(steamId)) { + members.unshift(steamId); + } + + return members; + } + + public async joinDraftGameAsParty( + user: User, + draftGameId: string, + inviteCode?: string, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open" || draftGame.match_id) { + throw new DraftGameError("This lobby is not open"); + } + + await this.verifyJoinAccess(user, draftGame, inviteCode); + + const members = await this.getPartyMembers(user.steam_id); + const requiresApproval = + draftGame.require_approval && user.steam_id !== draftGame.host_steam_id; + + let acceptedCount = this.acceptedPlayers(draftGame).length; + const joined: string[] = []; + + for (const steamId of members) { + if (draftGame.players.find((player) => player.steam_id === steamId)) { + continue; + } + + const status = requiresApproval + ? "Requested" + : acceptedCount < draftGame.capacity + ? "Accepted" + : "Waitlist"; + + const inserted = await this.playerLock(steamId, async () => { + const elsewhere = await this.getPlayerActiveDraftGame(steamId); + if (elsewhere && elsewhere !== draftGameId) { + return false; + } + + const elo = await this.getPlayerElo(steamId, draftGame.type); + if (draftGame.min_elo && elo < draftGame.min_elo) { + return false; + } + if (draftGame.max_elo && elo > draftGame.max_elo) { + return false; + } + + await this.hasura.mutation({ + insert_draft_game_players_one: { + __args: { + object: { + draft_game_id: draftGameId, + steam_id: steamId, + elo_snapshot: elo, + status, + }, + }, + __typename: true, + }, + }); + + if (status === "Accepted") { + await this.clearOtherRequests(steamId, draftGameId); + } + + return true; + }); + + if (!inserted) { + continue; + } + + if (status === "Accepted") { + acceptedCount++; + } + + joined.push(steamId); + } + + if (joined.length === 0) { + throw new DraftGameError("No one in your party could join this lobby"); + } + }); + } + + public acceptedPlayers(draftGame: DraftGame) { + return draftGame.players.filter((player) => player.status === "Accepted"); + } + + private async resolveMapPoolId( + settings: Partial, + draftGame: DraftGame, + ): Promise { + if (settings.map_pool_id) { + return settings.map_pool_id; + } + + const customMaps = (settings.options as Record)?.map_pool?.data + ?.maps?.data as Array | undefined; + + if (!customMaps?.length) { + return null; + } + + const mapIds = customMaps.filter((map) => map?.id).map((map) => map.id); + + if (draftGame.match_options_id) { + const { match_options_by_pk } = await this.hasura.query({ + match_options_by_pk: { + __args: { id: draftGame.match_options_id }, + map_pool: { + id: true, + type: true, + }, + }, + }); + + const existing = match_options_by_pk?.map_pool; + if (existing?.type === "Custom") { + await this.hasura.mutation({ + delete__map_pool: { + __args: { where: { map_pool_id: { _eq: existing.id } } }, + affected_rows: true, + }, + }); + await this.hasura.mutation({ + insert__map_pool: { + __args: { + objects: mapIds.map((map_id) => ({ + map_pool_id: existing.id, + map_id, + })), + }, + affected_rows: true, + }, + }); + return existing.id; + } + } + + const { insert_map_pools_one } = await this.hasura.mutation({ + insert_map_pools_one: { + __args: { + object: { + type: "Custom", + maps: { + data: mapIds.map((id) => ({ id })), + }, + }, + }, + id: true, + }, + }); + + return insert_map_pools_one.id; + } + + private matchOptionScalars( + user: User, + options: Record, + ): Record { + const source = options as Record; + + const object: Record = { + lobby_access: "Private", + mr: source.mr, + best_of: source.best_of, + knife_round: source.knife_round, + default_models: source.default_models, + overtime: source.overtime, + map_veto: source.map_veto, + coaches: source.coaches, + region_veto: source.region_veto, + regions: Array.isArray(source.regions) ? source.regions : [], + number_of_substitutes: source.number_of_substitutes, + timeout_setting: source.timeout_setting, + ready_setting: source.ready_setting, + tech_timeout_setting: source.tech_timeout_setting, + tv_delay: source.tv_delay, + }; + + if (source.map_pool_id) { + object.map_pool_id = source.map_pool_id; + } + + if (isRoleAbove(user.role, "tournament_organizer")) { + object.auto_cancellation = source.auto_cancellation; + object.match_mode = source.match_mode; + object.auto_cancel_duration = source.auto_cancel_duration ?? null; + object.live_match_timeout = source.live_match_timeout ?? null; + } + + return object; + } + + private async createMatchOptions( + user: User, + settings: CreateDraftGameSettings, + ): Promise { + if (!settings.options) { + return undefined; + } + + const source = settings.options as Record; + + const object: Record = { + ...this.matchOptionScalars(user, source), + type: settings.type, + }; + + if (!source.map_pool_id && source.map_pool?.data?.maps?.data) { + object.map_pool = { + data: { + type: "Custom", + maps: { + data: (source.map_pool.data.maps.data as Array) + .filter((map) => map?.id) + .map((map) => ({ id: map.id })), + }, + }, + }; + } + + const { insert_match_options_one } = await this.hasura.mutation({ + insert_match_options_one: { + __args: { + object, + }, + id: true, + }, + }); + + return insert_match_options_one.id; + } + + private async verifyTeamAccess( + user: User, + teamIds: Array, + ) { + const ids = teamIds.filter((id): id is string => !!id); + + if (ids.length === 0) { + return; + } + + if (ids.length === 2 && ids[0] === ids[1]) { + throw new DraftGameError("Team 1 and Team 2 cannot be the same"); + } + + if (isRoleAbove(user.role, "match_organizer")) { + return; + } + + const { team_roster } = await this.hasura.query({ + team_roster: { + __args: { + where: { + team_id: { _in: ids }, + player_steam_id: { _eq: user.steam_id }, + }, + }, + team_id: true, + }, + }); + + const owned = new Set(team_roster.map((row) => row.team_id)); + + for (const id of ids) { + if (!owned.has(id)) { + throw new DraftGameError("You are not a member of that team"); + } + } + } + + public async updateDraftSettings( + user: User, + draftGameId: string, + settings: Partial, + ) { + return this.draftLock(draftGameId, async () => { + const draftGame = await this.getDraftGame(draftGameId); + + if (!draftGame) { + throw new DraftGameError("Draft game not found"); + } + + if (user.steam_id !== draftGame.host_steam_id) { + throw new DraftGameError("Only the host can edit settings"); + } + + if (draftGame.status !== "Open") { + throw new DraftGameError( + "Settings can only be changed before the draft", + ); + } + + const nextMode = (settings.mode || + draftGame.mode) as e_draft_game_mode_enum; + + if (nextMode === "Teams") { + await this.verifyTeamAccess(user, [ + settings.team_1_id, + settings.team_2_id, + ]); + } + + let capacity = draftGame.capacity; + if (settings.type && settings.type !== draftGame.type) { + if (!DraftGameService.DRAFTABLE_TYPES.includes(settings.type)) { + throw new DraftGameError("Invalid draft game type"); + } + capacity = ExpectedPlayers[settings.type]; + } + + const _set: Record = {}; + if (settings.type) { + _set.type = settings.type; + _set.capacity = capacity; + } + if (settings.regions) { + _set.regions = settings.regions; + } + if (settings.mode) { + _set.mode = settings.mode; + } + if (settings.access) { + _set.access = settings.access; + } + if (settings.captain_selection) { + _set.captain_selection = settings.captain_selection; + } + if (settings.draft_order) { + _set.draft_order = settings.draft_order; + } + if (settings.require_approval !== undefined) { + _set.require_approval = settings.require_approval; + } + const mapPoolId = await this.resolveMapPoolId(settings, draftGame); + + const nextTeam1 = nextMode === "Teams" ? settings.team_1_id : undefined; + const nextTeam2 = nextMode === "Teams" ? settings.team_2_id : undefined; + const nextInnerSquad = + nextMode === "Teams" ? !!settings.inner_squad : false; + + _set.team_1_id = nextTeam1 ?? null; + _set.team_2_id = nextTeam2 ?? null; + _set.inner_squad = nextInnerSquad; + _set.map_pool_id = mapPoolId; + _set.min_elo = settings.min_elo ?? null; + _set.max_elo = settings.max_elo ?? null; + + if (nextMode === "Teams" && nextTeam1 && nextTeam2) { + _set.access = "Private"; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set, + }, + __typename: true, + }, + }); + + await this.reconcileAfterSettingsChange(draftGame, nextMode, capacity); + + if (nextMode === "Teams" && settings.roster) { + await this.reseedDraftPlayers( + draftGameId, + draftGame.host_steam_id, + settings.roster, + settings.type || draftGame.type, + ); + } + + if (settings.options && draftGame.match_options_id) { + const optionSet = this.matchOptionScalars(user, settings.options); + if (mapPoolId) { + optionSet.map_pool_id = mapPoolId; + } + await this.hasura.mutation({ + update_match_options_by_pk: { + __args: { + pk_columns: { id: draftGame.match_options_id }, + _set: optionSet, + }, + __typename: true, + }, + }); + } + }); + } + + private async reconcileAfterSettingsChange( + previous: DraftGame, + nextMode: e_draft_game_mode_enum, + capacity: number, + ) { + const perTeam = capacity / 2; + + if (nextMode === "Captains") { + await this.clearAssignedTeams(previous.id); + } else if (capacity !== previous.capacity) { + const overfilled = [1, 2].some( + (lineup) => + previous.players.filter((player) => player.lineup === lineup).length > + perTeam, + ); + if (overfilled) { + await this.clearAssignedTeams(previous.id); + } + } + + if (capacity < previous.capacity) { + await this.demoteOverflowToWaitlist(previous, capacity); + } + } + + private async clearAssignedTeams(draftGameId: string) { + await this.hasura.mutation({ + update_draft_game_players: { + __args: { + where: { draft_game_id: { _eq: draftGameId } }, + _set: { lineup: null, pick_order: null, is_captain: false }, + }, + __typename: true, + }, + }); + } + + private async demoteOverflowToWaitlist( + draftGame: DraftGame, + capacity: number, + ) { + if (this.acceptedPlayers(draftGame).length <= capacity) { + return; + } + + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGame.id }, + status: { _eq: "Accepted" }, + steam_id: { _neq: draftGame.host_steam_id }, + }, + order_by: [{ joined_at: "asc" }], + }, + steam_id: true, + }, + }); + + const overflow = draft_game_players.slice(capacity - 1); + + for (const player of overflow) { + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: player.steam_id, + }, + _set: { + status: "Waitlist", + lineup: null, + pick_order: null, + is_captain: false, + }, + }, + __typename: true, + }, + }); + } + } + + public async getDraftGame( + draftGameId: string, + ): Promise { + const { draft_games_by_pk } = await this.hasura.query({ + draft_games_by_pk: { + __args: { + id: draftGameId, + }, + id: true, + host_steam_id: true, + status: true, + type: true, + mode: true, + access: true, + invite_code: true, + regions: true, + map_pool_id: true, + match_options_id: true, + team_1_id: true, + team_2_id: true, + inner_squad: true, + captain_selection: true, + draft_order: true, + min_elo: true, + max_elo: true, + capacity: true, + require_approval: true, + match_id: true, + current_pick_lineup: true, + pick_deadline: true, + created_at: true, + players: { + steam_id: true, + status: true, + elo_snapshot: true, + is_captain: true, + lineup: true, + pick_order: true, + joined_at: true, + player: { + name: true, + avatar_url: true, + }, + }, + }, + }); + + if (!draft_games_by_pk) { + return undefined; + } + + return { + id: draft_games_by_pk.id, + host_steam_id: draft_games_by_pk.host_steam_id, + status: draft_games_by_pk.status, + type: draft_games_by_pk.type, + mode: draft_games_by_pk.mode as e_draft_game_mode_enum, + access: draft_games_by_pk.access, + invite_code: draft_games_by_pk.invite_code, + regions: draft_games_by_pk.regions, + map_pool_id: draft_games_by_pk.map_pool_id, + match_options_id: draft_games_by_pk.match_options_id, + team_1_id: draft_games_by_pk.team_1_id, + team_2_id: draft_games_by_pk.team_2_id, + captain_selection: draft_games_by_pk.captain_selection, + draft_order: draft_games_by_pk.draft_order, + min_elo: draft_games_by_pk.min_elo, + max_elo: draft_games_by_pk.max_elo, + capacity: draft_games_by_pk.capacity, + require_approval: draft_games_by_pk.require_approval, + match_id: draft_games_by_pk.match_id, + current_pick_lineup: draft_games_by_pk.current_pick_lineup, + pick_deadline: draft_games_by_pk.pick_deadline, + created_at: draft_games_by_pk.created_at, + players: draft_games_by_pk.players.map((player) => { + return { + steam_id: player.steam_id, + name: player.player.name, + avatar_url: player.player.avatar_url, + elo_snapshot: player.elo_snapshot, + is_captain: player.is_captain, + status: player.status, + lineup: player.lineup, + pick_order: player.pick_order, + joined_at: player.joined_at, + }; + }), + }; + } + + private async getPlayerActiveDraftGame( + steamId: string, + ): Promise { + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + status: { _eq: "Accepted" }, + draft_game: { + status: { + _nin: ["Completed", "Canceled"], + }, + }, + }, + order_by: [{ joined_at: "desc" }], + limit: 1, + }, + draft_game_id: true, + }, + }); + + return draft_game_players.at(0)?.draft_game_id; + } + + private async clearOtherRequests(steamId: string, keepDraftGameId: string) { + const { draft_game_players } = await this.hasura.query({ + draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + draft_game_id: { _neq: keepDraftGameId }, + draft_game: { + status: { _nin: ["Completed", "Canceled"] }, + host_steam_id: { _neq: steamId }, + }, + }, + }, + draft_game_id: true, + }, + }); + + const affected = Array.from( + new Set(draft_game_players.map((row) => row.draft_game_id)), + ); + + if (affected.length === 0) { + return; + } + + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + steam_id: { _eq: steamId }, + draft_game_id: { _in: affected }, + }, + }, + __typename: true, + }, + }); + } + + private async verifyPlayerEligible(steamId: string) { + const { players_by_pk: player } = await this.hasura.query({ + players_by_pk: { + __args: { + steam_id: steamId, + }, + name: true, + is_banned: true, + matchmaking_cooldown: true, + is_in_another_match: true, + }, + }); + + if (!player) { + throw new DraftGameError("Player not found"); + } + + if (player.is_in_another_match) { + throw new DraftGameError(`${player.name} is already in a match`); + } + + if (player.matchmaking_cooldown) { + throw new DraftGameError(`${player.name} is in matchmaking cooldown`); + } + + if (player.is_banned) { + throw new DraftGameError(`${player.name} is banned`); + } + } + + public async getPlayerElo( + steamId: string, + type: e_match_types_enum, + ): Promise { + const { players_by_pk: player } = await this.hasura.query({ + players_by_pk: { + __args: { + steam_id: steamId, + }, + elo: true, + }, + }); + + const elo = player?.elo as Record | null | undefined; + const value = elo ? elo[type.toLowerCase()] : undefined; + const parsed = value != null ? Number(value) : NaN; + + if (!Number.isFinite(parsed)) { + return DraftGameService.DEFAULT_ELO; + } + + return parsed; + } +} diff --git a/src/draft-games/draft-games.controller.ts b/src/draft-games/draft-games.controller.ts new file mode 100644 index 00000000..8a01b3b0 --- /dev/null +++ b/src/draft-games/draft-games.controller.ts @@ -0,0 +1,105 @@ +import { Controller } from "@nestjs/common"; +import { HasuraAction, HasuraEvent } from "../hasura/hasura.controller"; +import { User } from "../auth/types/User"; +import { DraftGameService } from "./draft-game.service"; +import { DraftService } from "./draft.service"; + +type DraftGameEvent = { + op: "INSERT" | "UPDATE" | "DELETE" | "MANUAL"; + old: Record; + new: Record; +}; + +@Controller("draft-games") +export class DraftGamesController { + constructor( + private readonly draftGameService: DraftGameService, + private readonly draftService: DraftService, + ) {} + + @HasuraEvent() + public async draft_game_events(data: DraftGameEvent) { + const draftGameId = (data.new?.id || data.old?.id) as string; + if (!draftGameId) { + return; + } + + if (data.op === "DELETE") { + await this.draftGameService.onDraftDeleted(draftGameId); + return; + } + + if (data.op !== "UPDATE") { + return; + } + + if ( + data.old?.status !== data.new?.status && + data.new?.status === "Filled" + ) { + await this.draftService.beginDraft(draftGameId); + } + } + + @HasuraEvent() + public async draft_game_pick_events(data: DraftGameEvent) { + if (data.op !== "INSERT") { + return; + } + await this.draftService.applyPick( + data.new.draft_game_id as string, + data.new.picked_steam_id as string, + ); + } + + @HasuraAction() + public async createDraftGame(data: { user: User; settings: any }) { + const draftGameId = await this.draftGameService.createDraftGame( + data.user, + data.settings, + ); + return { draftGameId }; + } + + @HasuraAction() + public async updateDraftGame(data: { + user: User; + draftGameId: string; + settings: any; + }) { + await this.draftGameService.updateDraftSettings( + data.user, + data.draftGameId, + data.settings, + ); + return { success: true }; + } + + @HasuraAction() + public async joinDraftGame(data: { + user: User; + draftGameId: string; + inviteCode?: string; + }) { + await this.draftGameService.joinDraftGame( + data.user, + data.draftGameId, + data.inviteCode, + ); + return { success: true }; + } + + @HasuraAction() + public async joinDraftGameAsParty(data: { + user: User; + draftGameId: string; + inviteCode?: string; + }) { + await this.draftGameService.joinDraftGameAsParty( + data.user, + data.draftGameId, + data.inviteCode, + ); + return { success: true }; + } +} diff --git a/src/draft-games/draft-games.module.ts b/src/draft-games/draft-games.module.ts new file mode 100644 index 00000000..df197ba0 --- /dev/null +++ b/src/draft-games/draft-games.module.ts @@ -0,0 +1,59 @@ +import { forwardRef, Module } from "@nestjs/common"; +import { InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { loggerFactory } from "../utilities/LoggerFactory"; +import { HasuraModule } from "src/hasura/hasura.module"; +import { RedisModule } from "src/redis/redis.module"; +import { CacheModule } from "src/cache/cache.module"; +import { MatchesModule } from "src/matches/matches.module"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullModule } from "@nestjs/bullmq"; +import { getQueuesProcessors } from "src/utilities/QueueProcessors"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftGamesController } from "./draft-games.controller"; +import { DraftGameService } from "./draft-game.service"; +import { DraftService } from "./draft.service"; +import { DraftMatchService } from "./draft-match.service"; +import { DraftPickTimeout } from "./jobs/DraftPickTimeout"; +import { CleanExpiredDraftGames } from "./jobs/CleanExpiredDraftGames"; + +@Module({ + imports: [ + RedisModule, + HasuraModule, + CacheModule, + forwardRef(() => MatchesModule), + BullModule.registerQueue({ + name: DraftGameQueues.DraftGames, + }), + BullBoardModule.forFeature({ + name: DraftGameQueues.DraftGames, + adapter: BullMQAdapter, + }), + ], + exports: [DraftGameService], + controllers: [DraftGamesController], + providers: [ + DraftGameService, + DraftService, + DraftMatchService, + DraftPickTimeout, + CleanExpiredDraftGames, + ...getQueuesProcessors("DraftGames"), + loggerFactory(), + ], +}) +export class DraftGamesModule { + constructor(@InjectQueue(DraftGameQueues.DraftGames) queue: Queue) { + if (process.env.RUN_MIGRATIONS) { + return; + } + + void queue.add( + CleanExpiredDraftGames.name, + {}, + { repeat: { pattern: "* * * * *" } }, + ); + } +} diff --git a/src/draft-games/draft-match.service.ts b/src/draft-games/draft-match.service.ts new file mode 100644 index 00000000..11e6699d --- /dev/null +++ b/src/draft-games/draft-match.service.ts @@ -0,0 +1,306 @@ +import { Logger } from "@nestjs/common"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { e_map_pool_types_enum } from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { MatchAssistantService } from "src/matches/match-assistant/match-assistant.service"; +import { DraftGameService } from "./draft-game.service"; +import { DraftGame } from "./types/DraftGame"; + +@Injectable() +export class DraftMatchService { + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + public readonly matchAssistant: MatchAssistantService, + @Inject(forwardRef(() => DraftGameService)) + private readonly draftGameService: DraftGameService, + ) {} + + public async finalize(draftGameId: string) { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status === "Completed") { + return; + } + + let match = await this.findExistingMatch(draftGame); + + if (!match) { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "CreatingMatch" }, + }, + __typename: true, + }, + }); + + const beforeCreate = + await this.draftGameService.getDraftGame(draftGameId); + if ( + !beforeCreate || + beforeCreate.status === "Canceled" || + beforeCreate.status === "Completed" + ) { + return; + } + + match = await this.findExistingMatch(beforeCreate); + + if (!match) { + match = await this.createMatch(beforeCreate); + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { match_id: match.id }, + }, + __typename: true, + }, + }); + } + } + + await this.ensureLineups(draftGame, match); + + const beforeComplete = + await this.draftGameService.getDraftGame(draftGameId); + if (!beforeComplete || beforeComplete.status === "Canceled") { + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { + status: "Completed", + match_id: match.id, + match_options_id: null, + }, + }, + __typename: true, + }, + }); + + await this.matchAssistant.updateMatchStatus(match.id, "WaitingForCheckIn"); + } + + private async ensureLineups( + draftGame: DraftGame, + match: { lineup_1_id?: string | null; lineup_2_id?: string | null }, + ) { + const lineupIds = [match.lineup_1_id, match.lineup_2_id].filter( + (id): id is string => !!id, + ); + + if (lineupIds.length === 0) { + return; + } + + const { match_lineup_players } = await this.hasura.query({ + match_lineup_players: { + __args: { + where: { match_lineup_id: { _in: lineupIds } }, + limit: 1, + }, + steam_id: true, + }, + }); + + if (match_lineup_players.length > 0) { + return; + } + + const { team1, team2 } = this.buildTeams(draftGame); + const captain1 = this.captainSteamId(team1); + const captain2 = this.captainSteamId(team2); + + await this.hasura.mutation({ + insert_match_lineup_players: { + __args: { + objects: team1.map((player) => ({ + steam_id: player.steam_id, + match_lineup_id: match.lineup_1_id, + captain: player.steam_id === captain1, + })), + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + insert_match_lineup_players: { + __args: { + objects: team2.map((player) => ({ + steam_id: player.steam_id, + match_lineup_id: match.lineup_2_id, + captain: player.steam_id === captain2, + })), + }, + __typename: true, + }, + }); + } + + private buildTeams(draftGame: DraftGame) { + return { + team1: draftGame.players.filter((player) => player.lineup === 1), + team2: draftGame.players.filter((player) => player.lineup === 2), + }; + } + + private async findExistingMatch(draftGame: DraftGame): Promise<{ + id: string; + lineup_1_id?: string | null; + lineup_2_id?: string | null; + } | null> { + if (draftGame.match_id) { + const { matches_by_pk } = await this.hasura.query({ + matches_by_pk: { + __args: { id: draftGame.match_id }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + if (matches_by_pk) { + return matches_by_pk; + } + } + + if (draftGame.match_options_id) { + const { matches } = await this.hasura.query({ + matches: { + __args: { + where: { match_options_id: { _eq: draftGame.match_options_id } }, + limit: 1, + }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + if (matches.length > 0) { + return matches[0]; + } + } + + return null; + } + + private async createMatch(draftGame: DraftGame) { + if (draftGame.match_options_id) { + const { insert_matches_one } = await this.hasura.mutation({ + insert_matches_one: { + __args: { + object: { + match_options_id: draftGame.match_options_id, + organizer_steam_id: draftGame.host_steam_id, + ...(draftGame.mode === "Teams" + ? { + lineup_1: { data: { team_id: draftGame.team_1_id } }, + lineup_2: { data: { team_id: draftGame.team_2_id } }, + } + : {}), + }, + }, + id: true, + lineup_1_id: true, + lineup_2_id: true, + }, + }); + + return insert_matches_one; + } + + const mapPoolType: e_map_pool_types_enum = + draftGame.type === "Premier" || draftGame.type === "Faceit" + ? "Competitive" + : draftGame.type; + + const maps = await this.getMapPoolMaps(draftGame.map_pool_id); + + const match = await this.matchAssistant.createMatchBasedOnType( + draftGame.type, + mapPoolType, + { + mr: draftGame.type === "Competitive" ? 12 : 8, + best_of: 1, + knife: true, + overtime: true, + timeout_setting: "Admin", + ...(maps.length > 0 && { maps }), + }, + ); + + await this.setMatchOptionsRegions(match.id, draftGame.regions); + + return match; + } + + private captainSteamId( + team: Array<{ steam_id: string; pick_order?: number }>, + ) { + return [...team].sort( + (a, b) => (a.pick_order ?? 0) - (b.pick_order ?? 0), + )[0]?.steam_id; + } + + private async getMapPoolMaps(mapPoolId?: string): Promise> { + if (!mapPoolId) { + return []; + } + + const { _map_pool } = await this.hasura.query({ + _map_pool: { + __args: { + where: { + map_pool_id: { _eq: mapPoolId }, + }, + }, + map_id: true, + }, + }); + + return _map_pool.map((row) => row.map_id); + } + + private async setMatchOptionsRegions( + matchId: string, + regions: Array, + ) { + if (!regions || regions.length === 0) { + return; + } + + const { matches_by_pk: match } = await this.hasura.query({ + matches_by_pk: { + __args: { + id: matchId, + }, + match_options_id: true, + }, + }); + + if (!match?.match_options_id) { + return; + } + + await this.hasura.mutation({ + update_match_options_by_pk: { + __args: { + pk_columns: { id: match.match_options_id }, + _set: { regions }, + }, + __typename: true, + }, + }); + } +} diff --git a/src/draft-games/draft.service.ts b/src/draft-games/draft.service.ts new file mode 100644 index 00000000..f2c5812c --- /dev/null +++ b/src/draft-games/draft.service.ts @@ -0,0 +1,599 @@ +import Redis from "ioredis"; +import { Queue } from "bullmq"; +import { Logger } from "@nestjs/common"; +import { InjectQueue } from "@nestjs/bullmq"; +import { forwardRef, Inject, Injectable } from "@nestjs/common"; +import { e_draft_game_draft_order_enum } from "generated"; +import { HasuraService } from "src/hasura/hasura.service"; +import { CacheService } from "src/cache/cache.service"; +import { RedisManagerService } from "../redis/redis-manager/redis-manager.service"; +import { DraftGame, DraftGamePlayer } from "./types/DraftGame"; +import { DraftGameError } from "./types/DraftGameError"; +import { DraftGameQueues } from "./enums/DraftGameQueues"; +import { DraftGameService } from "./draft-game.service"; +import { DraftMatchService } from "./draft-match.service"; + +@Injectable() +export class DraftService { + public redis: Redis; + + public static readonly PICK_SECONDS = 30; + + private static getDraftPickDeadlineKey(draftGameId: string): string { + return `draft-games:v1:${draftGameId}:deadline`; + } + + constructor( + public readonly logger: Logger, + public readonly hasura: HasuraService, + public readonly cache: CacheService, + public readonly redisManager: RedisManagerService, + @Inject(forwardRef(() => DraftGameService)) + private readonly draftGameService: DraftGameService, + private readonly draftMatchService: DraftMatchService, + @InjectQueue(DraftGameQueues.DraftGames) private queue: Queue, + ) { + this.redis = this.redisManager.getConnection(); + } + + public async beginDraft(draftGameId: string) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.match_id) { + return; + } + + const perTeam = draftGame.capacity / 2; + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (draftGame.mode === "Teams") { + if (!draftGame.team_1_id) { + return; + } + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Host") { + const team1 = accepted.filter((player) => player.lineup === 1).length; + const team2 = accepted.filter((player) => player.lineup === 2).length; + if (team1 !== perTeam || team2 !== perTeam) { + return; + } + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Pug") { + if (accepted.length !== draftGame.capacity) { + return; + } + await this.autoSplit(draftGame); + await this.draftMatchService.finalize(draftGameId); + return; + } + + if (draftGame.mode === "Captains") { + if (accepted.length !== draftGame.capacity) { + return; + } + await this.runDraftStart(draftGameId); + } + }); + } + + private async runDraftStart(draftGameId: string) { + let draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || !["Open", "Filled"].includes(draftGame.status)) { + return; + } + + const requested = draftGame.players.filter( + (player) => player.status === "Requested", + ); + + if (requested.length > 0) { + await this.hasura.mutation({ + delete_draft_game_players: { + __args: { + where: { + draft_game_id: { _eq: draftGameId }, + status: { _eq: "Requested" }, + }, + }, + __typename: true, + }, + }); + + draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Open") { + return; + } + } + + if (draftGame.mode === "Host") { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "Drafting", current_pick_lineup: null }, + }, + __typename: true, + }, + }); + return; + } + + if (draftGame.mode === "Pug") { + await this.autoSplit(draftGame); + await this.draftMatchService.finalize(draftGameId); + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "SelectingCaptains" }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players: { + __args: { + where: { draft_game_id: { _eq: draftGameId } }, + _set: { lineup: null, pick_order: null, is_captain: false }, + }, + __typename: true, + }, + }); + + const [captain1, captain2] = this.selectCaptains(draftGame); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: captain1 }, + _set: { is_captain: true, lineup: 1, pick_order: 0 }, + }, + __typename: true, + }, + }); + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { draft_game_id: draftGameId, steam_id: captain2 }, + _set: { is_captain: true, lineup: 2, pick_order: 0 }, + }, + __typename: true, + }, + }); + + await this.beginDrafting(draftGameId); + } + + private selectCaptains(draftGame: DraftGame): [string, string] { + switch (draftGame.captain_selection) { + case "HostAndNext": + return this.selectCaptainsHostAndNext(draftGame); + case "RandomTwo": + return this.selectCaptainsRandomTwo(draftGame); + case "TopEloTwo": + default: + return this.selectCaptainsTopEloTwo(draftGame); + } + } + + private selectCaptainsTopEloTwo(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const sorted = [...accepted].sort( + (a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0), + ); + return [sorted[0].steam_id, sorted[1].steam_id]; + } + + private selectCaptainsHostAndNext(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const others = accepted + .filter((player) => player.steam_id !== draftGame.host_steam_id) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + if (others.length === 0) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + return [draftGame.host_steam_id, others[0].steam_id]; + } + + private selectCaptainsRandomTwo(draftGame: DraftGame): [string, string] { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + + if (accepted.length < 2) { + throw new DraftGameError( + "At least two accepted players are required to select captains", + ); + } + + const shuffled = this.shuffle(accepted); + return [shuffled[0].steam_id, shuffled[1].steam_id]; + } + + private shuffle(items: Array): Array { + const result = [...items]; + for (let index = result.length - 1; index > 0; index--) { + const swap = Math.floor(Math.random() * (index + 1)); + const temp = result[index]; + result[index] = result[swap]; + result[swap] = temp; + } + return result; + } + + private async autoSplit(draftGame: DraftGame) { + const accepted = this.draftGameService.acceptedPlayers(draftGame); + const counts: Record = { 1: 0, 2: 0 }; + + for (const player of accepted) { + if (player.lineup === 1 || player.lineup === 2) { + counts[player.lineup]++; + } + } + + const unassigned = accepted + .filter((player) => player.lineup !== 1 && player.lineup !== 2) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + for (const player of unassigned) { + const lineup = counts[1] <= counts[2] ? 1 : 2; + counts[lineup]++; + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: player.steam_id, + }, + _set: { lineup, pick_order: counts[lineup] }, + }, + __typename: true, + }, + }); + } + } + + private async beginDrafting(draftGameId: string) { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame) { + return; + } + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { status: "Drafting" }, + }, + __typename: true, + }, + }); + + const undrafted = draftGame.players.filter( + (player) => player.lineup === null || player.lineup === undefined, + ); + + if (undrafted.length === 0) { + await this.draftMatchService.finalize(draftGameId); + return; + } + + const lineup = this.nextLineup(draftGame, 0); + await this.setCurrentPick(draftGameId, lineup); + await this.startPickTimer(draftGameId, 0); + } + + public async autoPick(draftGameId: string, pickCount: number) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Drafting" || draftGame.match_id) { + return; + } + + if (this.draftedCount(draftGame) !== pickCount) { + return; + } + + const undrafted = draftGame.players + .filter( + (player) => player.lineup === null || player.lineup === undefined, + ) + .sort((a, b) => (b.elo_snapshot || 0) - (a.elo_snapshot || 0)); + + if (undrafted.length === 0) { + return; + } + + const captain = draftGame.players.find( + (player) => + player.is_captain && player.lineup === draftGame.current_pick_lineup, + ); + + if (!captain) { + return; + } + + await this.hasura.mutation({ + insert_draft_game_picks_one: { + __args: { + object: { + draft_game_id: draftGameId, + captain_steam_id: captain.steam_id, + picked_steam_id: undrafted[0].steam_id, + lineup: draftGame.current_pick_lineup, + auto_picked: true, + }, + }, + __typename: true, + }, + }); + }); + } + + public async applyPick(draftGameId: string, pickedSteamId: string) { + return this.cache.lock(DraftGameService.lockKey(draftGameId), async () => { + const draftGame = await this.draftGameService.getDraftGame(draftGameId); + + if (!draftGame || draftGame.status !== "Drafting" || draftGame.match_id) { + return; + } + + const target = draftGame.players.find( + (player) => player.steam_id === pickedSteamId, + ); + + if (!target || target.lineup != null) { + return; + } + + await this.performPick(draftGame, target); + }); + } + + private async performPick(draftGame: DraftGame, target: DraftGamePlayer) { + const currentLineup = draftGame.current_pick_lineup; + const captain = draftGame.players.find( + (player) => player.is_captain && player.lineup === currentLineup, + ); + + if (!captain) { + return; + } + + const pickCount = this.draftedCount(draftGame); + const currentLineupCount = draftGame.players.filter( + (player) => player.lineup === currentLineup, + ).length; + + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: target.steam_id, + }, + _set: { lineup: currentLineup, pick_order: currentLineupCount }, + }, + __typename: true, + }, + }); + + await this.removePickTimer(draftGame.id); + + const undrafted = draftGame.players.filter( + (player) => + player.steam_id !== target.steam_id && + (player.lineup === null || player.lineup === undefined), + ); + + if (undrafted.length === 1) { + const updated = await this.draftGameService.getDraftGame(draftGame.id); + + if (!updated) { + await this.removeAllPickTimers(draftGame.id); + return; + } + + const lineup = this.nextLineup(updated, pickCount + 1); + const lineupCount = updated.players.filter( + (player) => player.lineup === lineup, + ).length; + await this.hasura.mutation({ + update_draft_game_players_by_pk: { + __args: { + pk_columns: { + draft_game_id: draftGame.id, + steam_id: undrafted[0].steam_id, + }, + _set: { lineup, pick_order: lineupCount }, + }, + __typename: true, + }, + }); + + await this.removeAllPickTimers(draftGame.id); + await this.draftMatchService.finalize(draftGame.id); + return; + } + + if (undrafted.length === 0) { + await this.removeAllPickTimers(draftGame.id); + await this.draftMatchService.finalize(draftGame.id); + return; + } + + const updated = await this.draftGameService.getDraftGame(draftGame.id); + + if (!updated) { + await this.removeAllPickTimers(draftGame.id); + return; + } + + const nextLineup = this.nextLineup(updated, pickCount + 1); + await this.setCurrentPick(draftGame.id, nextLineup); + await this.startPickTimer(draftGame.id, pickCount + 1); + } + + private draftedCount(draftGame: DraftGame): number { + return draftGame.players.filter( + (player) => + !player.is_captain && + player.lineup !== null && + player.lineup !== undefined, + ).length; + } + + private nextLineup(draftGame: DraftGame, pickCount: number): number { + const perTeam = draftGame.capacity / 2; + + const counts = { 1: 0, 2: 0 }; + for (const player of draftGame.players) { + if (player.lineup === 1) { + counts[1]++; + } + if (player.lineup === 2) { + counts[2]++; + } + } + + if (counts[1] >= perTeam) { + return 2; + } + + if (counts[2] >= perTeam) { + return 1; + } + + const order = this.getDraftOrder( + draftGame.draft_order, + draftGame.capacity - 2, + ); + + return order[pickCount] || 1; + } + + private getDraftOrder( + draftOrder: e_draft_game_draft_order_enum, + picks: number, + ): Array { + if (picks <= 0) { + return []; + } + + if (draftOrder === "Alternating") { + return Array.from({ length: picks }, (_, index) => + index % 2 === 0 ? 1 : 2, + ); + } + + const order: Array = [1]; + let next = 2; + while (order.length < picks) { + order.push(next); + if (order.length < picks) { + order.push(next); + } + next = next === 1 ? 2 : 1; + } + return order; + } + + private async setCurrentPick(draftGameId: string, lineup: number) { + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { current_pick_lineup: lineup }, + }, + __typename: true, + }, + }); + } + + private async startPickTimer(draftGameId: string, pickCount: number) { + const deadline = new Date(Date.now() + DraftService.PICK_SECONDS * 1000); + + await this.redis.set( + DraftService.getDraftPickDeadlineKey(draftGameId), + deadline.toISOString(), + "EX", + DraftService.PICK_SECONDS + 10, + ); + + await this.hasura.mutation({ + update_draft_games_by_pk: { + __args: { + pk_columns: { id: draftGameId }, + _set: { pick_deadline: deadline.toISOString() }, + }, + __typename: true, + }, + }); + + await this.removePickTimer(draftGameId); + + await this.queue.add( + "DraftPickTimeout", + { + draftGameId, + pickCount, + }, + { + delay: DraftService.PICK_SECONDS * 1000, + jobId: `draft.pick.${draftGameId}.${pickCount}`, + }, + ); + } + + private async removePickTimer(draftGameId: string) { + const prefix = `draft.pick.${draftGameId}.`; + try { + const delayed = await this.queue.getDelayed(); + for (const job of delayed) { + if (job.id?.startsWith(prefix)) { + await job.remove(); + } + } + } catch { + this.logger.debug(`pick-timer jobs ${draftGameId} not found`); + } + } + + public async removeAllPickTimers(draftGameId: string) { + await this.removePickTimer(draftGameId); + await this.redis.del(DraftService.getDraftPickDeadlineKey(draftGameId)); + } +} diff --git a/src/draft-games/enums/DraftGameQueues.ts b/src/draft-games/enums/DraftGameQueues.ts new file mode 100644 index 00000000..58c64279 --- /dev/null +++ b/src/draft-games/enums/DraftGameQueues.ts @@ -0,0 +1,3 @@ +export enum DraftGameQueues { + DraftGames = "draft-games", +} diff --git a/src/draft-games/jobs/CleanExpiredDraftGames.ts b/src/draft-games/jobs/CleanExpiredDraftGames.ts new file mode 100644 index 00000000..128bb1a5 --- /dev/null +++ b/src/draft-games/jobs/CleanExpiredDraftGames.ts @@ -0,0 +1,38 @@ +import { Logger } from "@nestjs/common"; +import { WorkerHost } from "@nestjs/bullmq"; +import { DraftGameQueues } from "../enums/DraftGameQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { HasuraService } from "../../hasura/hasura.service"; + +@UseQueue("DraftGames", DraftGameQueues.DraftGames) +export class CleanExpiredDraftGames extends WorkerHost { + constructor( + private readonly logger: Logger, + private readonly hasura: HasuraService, + ) { + super(); + } + + async process(): Promise { + const { delete_draft_games } = await this.hasura.mutation({ + delete_draft_games: { + __args: { + where: { + status: { _eq: "Open" }, + match_id: { _is_null: true }, + expires_at: { _lte: new Date() }, + }, + }, + affected_rows: true, + }, + }); + + if (delete_draft_games.affected_rows > 0) { + this.logger.log( + `removed ${delete_draft_games.affected_rows} expired draft games`, + ); + } + + return delete_draft_games.affected_rows; + } +} diff --git a/src/draft-games/jobs/DraftPickTimeout.ts b/src/draft-games/jobs/DraftPickTimeout.ts new file mode 100644 index 00000000..61255ad3 --- /dev/null +++ b/src/draft-games/jobs/DraftPickTimeout.ts @@ -0,0 +1,22 @@ +import { Job } from "bullmq"; +import { WorkerHost } from "@nestjs/bullmq"; +import { DraftGameQueues } from "../enums/DraftGameQueues"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { DraftService } from "../draft.service"; + +@UseQueue("DraftGames", DraftGameQueues.DraftGames) +export class DraftPickTimeout extends WorkerHost { + constructor(private readonly draftService: DraftService) { + super(); + } + + async process( + job: Job<{ + draftGameId: string; + pickCount: number; + }>, + ): Promise { + const { draftGameId, pickCount } = job.data; + await this.draftService.autoPick(draftGameId, pickCount); + } +} diff --git a/src/draft-games/types/DraftGame.ts b/src/draft-games/types/DraftGame.ts new file mode 100644 index 00000000..26e8bbfc --- /dev/null +++ b/src/draft-games/types/DraftGame.ts @@ -0,0 +1,46 @@ +import { + e_match_types_enum, + e_draft_game_mode_enum, + e_draft_game_status_enum, + e_draft_game_draft_order_enum, + e_draft_game_captain_selection_enum, +} from "generated"; + +export interface DraftGamePlayer { + steam_id: string; + name: string; + avatar_url?: string; + elo_snapshot?: number; + is_captain: boolean; + lineup?: number; + pick_order?: number; + status?: string; + joined_at?: string; +} + +export interface DraftGame { + id: string; + host_steam_id: string; + status: e_draft_game_status_enum; + type: e_match_types_enum; + mode: e_draft_game_mode_enum; + access: string; + invite_code?: string; + regions: Array; + map_pool_id?: string; + match_options_id?: string; + team_1_id?: string; + team_2_id?: string; + inner_squad?: boolean; + captain_selection: e_draft_game_captain_selection_enum; + draft_order: e_draft_game_draft_order_enum; + min_elo?: number; + max_elo?: number; + capacity: number; + require_approval: boolean; + match_id?: string; + current_pick_lineup?: number; + pick_deadline?: string; + created_at?: string; + players: Array; +} diff --git a/src/draft-games/types/DraftGameError.ts b/src/draft-games/types/DraftGameError.ts new file mode 100644 index 00000000..8f6a3dec --- /dev/null +++ b/src/draft-games/types/DraftGameError.ts @@ -0,0 +1,6 @@ +export class DraftGameError extends Error { + constructor(message: string) { + super(message); + this.name = "DraftGameError"; + } +} diff --git a/src/news/enums/NewsQueues.ts b/src/news/enums/NewsQueues.ts new file mode 100644 index 00000000..51eca1cd --- /dev/null +++ b/src/news/enums/NewsQueues.ts @@ -0,0 +1,3 @@ +export enum NewsQueues { + "ScrapeTldrNews" = "scrape-tldr-news", +} diff --git a/src/news/jobs/ScrapeTldrNews.ts b/src/news/jobs/ScrapeTldrNews.ts new file mode 100644 index 00000000..34f8a085 --- /dev/null +++ b/src/news/jobs/ScrapeTldrNews.ts @@ -0,0 +1,16 @@ +import { Job } from "bullmq"; +import { WorkerHost } from "@nestjs/bullmq"; +import { UseQueue } from "../../utilities/QueueProcessors"; +import { NewsQueues } from "../enums/NewsQueues"; +import { NewsService } from "../news.service"; + +@UseQueue("News", NewsQueues.ScrapeTldrNews) +export class ScrapeTldrNews extends WorkerHost { + constructor(private readonly newsService: NewsService) { + super(); + } + + async process(job: Job<{ force?: boolean }>): Promise { + await this.newsService.scrape(job.data?.force ?? false); + } +} diff --git a/src/news/news.controller.ts b/src/news/news.controller.ts new file mode 100644 index 00000000..9888bb35 --- /dev/null +++ b/src/news/news.controller.ts @@ -0,0 +1,40 @@ +import { Controller } from "@nestjs/common"; +import { InjectQueue } from "@nestjs/bullmq"; +import { Queue } from "bullmq"; +import { HasuraAction } from "../hasura/hasura.controller"; +import { SystemService } from "src/system/system.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; +import { NewsQueues } from "./enums/NewsQueues"; +import { ScrapeTldrNews } from "./jobs/ScrapeTldrNews"; + +@Controller("news") +export class NewsController { + constructor( + private readonly system: SystemService, + @InjectQueue(NewsQueues.ScrapeTldrNews) private readonly scrapeQueue: Queue, + ) {} + + @HasuraAction() + public async rescanTldrNews() { + const enabled = await this.system.getSetting( + SystemSettingName.TldrNewsEnabled, + false, + ); + + if (!enabled) { + throw Error("tl;dr news integration is not enabled"); + } + + await this.scrapeQueue.add( + ScrapeTldrNews.name, + { force: true }, + { + jobId: "tldr-news.manual", + removeOnComplete: true, + removeOnFail: true, + }, + ); + + return { success: true }; + } +} diff --git a/src/news/news.module.ts b/src/news/news.module.ts new file mode 100644 index 00000000..74709073 --- /dev/null +++ b/src/news/news.module.ts @@ -0,0 +1,58 @@ +import { Module } from "@nestjs/common"; +import { BullModule, InjectQueue } from "@nestjs/bullmq"; +import { BullBoardModule } from "@bull-board/nestjs"; +import { BullMQAdapter } from "@bull-board/api/bullMQAdapter"; +import { Queue } from "bullmq"; +import { HasuraModule } from "src/hasura/hasura.module"; +import { PostgresModule } from "src/postgres/postgres.module"; +import { SystemModule } from "src/system/system.module"; +import { loggerFactory } from "src/utilities/LoggerFactory"; +import { getQueuesProcessors } from "src/utilities/QueueProcessors"; +import { NewsQueues } from "./enums/NewsQueues"; +import { NewsService } from "./news.service"; +import { NewsController } from "./news.controller"; +import { ScrapeTldrNews } from "./jobs/ScrapeTldrNews"; + +@Module({ + imports: [ + BullModule.registerQueue({ + name: NewsQueues.ScrapeTldrNews, + }), + BullBoardModule.forFeature({ + name: NewsQueues.ScrapeTldrNews, + adapter: BullMQAdapter, + }), + HasuraModule, + PostgresModule, + SystemModule, + ], + controllers: [NewsController], + providers: [ + NewsService, + ScrapeTldrNews, + ...getQueuesProcessors("News"), + loggerFactory(), + ], + exports: [NewsService], +}) +export class NewsModule { + constructor( + @InjectQueue(NewsQueues.ScrapeTldrNews) + queue: Queue, + ) { + if (process.env.RUN_MIGRATIONS) { + return; + } + + void queue.add( + ScrapeTldrNews.name, + {}, + { + repeat: { + pattern: "0 * * * *", + jobId: ScrapeTldrNews.name, + }, + }, + ); + } +} diff --git a/src/news/news.service.ts b/src/news/news.service.ts new file mode 100644 index 00000000..d952cbfb --- /dev/null +++ b/src/news/news.service.ts @@ -0,0 +1,479 @@ +import fetch from "node-fetch"; +import * as cheerio from "cheerio"; +import sanitizeHtml from "sanitize-html"; +import { Injectable, Logger } from "@nestjs/common"; +import { PostgresService } from "src/postgres/postgres.service"; +import { SystemService } from "src/system/system.service"; +import { SystemSettingName } from "src/system/enums/SystemSettingName"; + +interface ScrapedArticle { + source: string; + issueNumber: number | null; + slug: string | null; + url: string; + title: string; + teaser: string | null; + contentHtml: string | null; + coverImageUrl: string | null; + author: string | null; + publishedAt: Date | null; +} + +@Injectable() +export class NewsService { + private static readonly SOURCE = "tldr"; + private static readonly BASE_URL = "https://readtldr.gg"; + private static readonly ARCHIVE_PATH = "/csgo-archive"; + private static readonly MAX_ARTICLES = 12; + private static readonly FETCH_TIMEOUT_MS = 15_000; + private static readonly MAX_RESPONSE_BYTES = 8 * 1024 * 1024; + private static readonly ALLOWED_HOSTS = [ + "readtldr.gg", + "web.archive.org", + "website-files.com", + ]; + private static readonly USER_AGENT = + "5stack-news-bot/1.0 (+https://5stack.gg; caches readtldr.gg CS news with attribution)"; + + constructor( + private readonly logger: Logger, + private readonly postgres: PostgresService, + private readonly system: SystemService, + ) {} + + public async scrape(force = false): Promise { + const enabled = await this.system.getSetting( + SystemSettingName.TldrNewsEnabled, + false, + ); + + if (!enabled) { + return; + } + + const links = await this.discoverArticleLinks(); + + if (links.length === 0) { + this.logger.warn("[tldr-news] no article links discovered"); + return; + } + + const newLinks = force ? links : await this.filterUncachedLinks(links); + + if (newLinks.length === 0) { + return; + } + + this.logger.log(`[tldr-news] scraping ${newLinks.length} new article(s)`); + + let saved = 0; + for (const url of newLinks) { + try { + const article = await this.scrapeArticle(url); + if (article) { + await this.upsertArticle(article); + saved++; + } + } catch (error) { + this.logger.warn(`[tldr-news] failed to scrape ${url}`, error); + } + } + + this.logger.log(`[tldr-news] cached ${saved} article(s)`); + } + + private async discoverArticleLinks(): Promise { + const html = await this.fetchHtml( + `${NewsService.BASE_URL}${NewsService.ARCHIVE_PATH}`, + ); + + if (!html) { + return []; + } + + return this.extractArticleLinks(html).slice(0, NewsService.MAX_ARTICLES); + } + + private extractArticleLinks(html: string): string[] { + const $ = cheerio.load(html); + const links = new Set(); + + $(`a[href*="${NewsService.ARCHIVE_PATH}/"]`).each((_, el) => { + const href = $(el).attr("href"); + if (!href) { + return; + } + + const absolute = this.absoluteUrl(href); + if (/\/csgo-archive\/\d+-/.test(absolute)) { + links.add(absolute.split("?")[0].split("#")[0]); + } + }); + + return Array.from(links); + } + + private async filterUncachedLinks(links: string[]): Promise { + const existing = await this.postgres.query< + Array<{ url: string; content_html: string | null }> + >( + `SELECT url, content_html FROM public.news_articles WHERE url = ANY($1::text[])`, + [links], + ); + + const settled = new Set( + existing + .filter((row) => (row.content_html ?? "").trim().length > 0) + .map((row) => row.url), + ); + return links.filter((url) => !settled.has(url)); + } + + private async scrapeArticle(url: string): Promise { + const html = await this.fetchHtml(url); + if (!html) { + return null; + } + + const $ = cheerio.load(html); + + const meta = (property: string) => + $(`meta[property="${property}"]`).attr("content") || + $(`meta[name="${property}"]`).attr("content") || + null; + + const { issueNumber, slug } = this.parseIssueAndSlug(url); + + const title = + this.cleanText(meta("og:title")) || + this.cleanText($("h1").first().text()) || + this.cleanText($("title").text()) || + `Issue #${issueNumber ?? ""}`.trim(); + + const teaser = + this.cleanText(meta("og:description")) || + this.cleanText(meta("description")) || + this.cleanText($(".archive-intro").first().text()); + + const coverImageUrl = this.sanitizeImageUrl(meta("og:image")); + const author = this.cleanText(meta("author") || meta("article:author")); + + const publishedRaw = + meta("article:published_time") || + meta("article:modified_time") || + $("time[datetime]").first().attr("datetime") || + null; + const publishedAt = this.parseDate(publishedRaw); + + const contentHtml = await this.fetchArticleBody(html); + if (!contentHtml) { + this.logger.warn( + `[tldr-news] not storing ${url}: full article body unavailable`, + ); + return null; + } + + return { + source: NewsService.SOURCE, + issueNumber, + slug, + url, + title, + teaser, + contentHtml, + coverImageUrl, + author, + publishedAt, + }; + } + + private async fetchArticleBody(pageHtml: string): Promise { + const webArchiveUrl = this.extractWebArchiveUrl(pageHtml); + + if (!webArchiveUrl) { + this.logger.warn( + "[tldr-news] no article body url found on page; skipping (only the teaser is available)", + ); + return null; + } + + if (!this.isAllowedUrl(webArchiveUrl)) { + const host = this.hostnameOf(webArchiveUrl); + this.logger.warn( + `[tldr-news] article body hosted on non-allowlisted host "${host}" (${webArchiveUrl}); add it to ALLOWED_HOSTS to cache the full article`, + ); + return null; + } + + const raw = await this.fetchHtml(webArchiveUrl); + const cleaned = raw ? this.cleanHtml(raw, webArchiveUrl) : ""; + if (cleaned.length === 0) { + this.logger.warn( + `[tldr-news] failed to fetch full article body from ${webArchiveUrl}; skipping`, + ); + return null; + } + + return cleaned; + } + + private extractWebArchiveUrl(pageHtml: string): string | null { + const match = pageHtml.match(/webArchivePath\s*=\s*["']([^"']+)["']/); + const url = match?.[1]?.trim(); + return url && url.length > 0 ? url : null; + } + + private cleanHtml(rawHtml: string, baseUrl: string): string { + const $ = cheerio.load(rawHtml, null, false); + + $("a[href^='/']").each((_, el) => { + $(el).attr("href", this.absoluteUrl($(el).attr("href") as string, baseUrl)); + }); + $("img[src^='/']").each((_, el) => { + $(el).attr("src", this.absoluteUrl($(el).attr("src") as string, baseUrl)); + }); + + const sanitized = sanitizeHtml($.html() || "", { + allowedTags: [ + "p", + "br", + "hr", + "a", + "ul", + "ol", + "li", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "blockquote", + "strong", + "b", + "em", + "i", + "u", + "s", + "span", + "div", + "code", + "pre", + "img", + "figure", + "figcaption", + "table", + "thead", + "tbody", + "tr", + "th", + "td", + ], + allowedAttributes: { + "*": [ + "style", + "class", + "align", + "valign", + "width", + "height", + "bgcolor", + "border", + "cellpadding", + "cellspacing", + "role", + ], + a: ["href", "title", "rel", "target"], + img: ["src", "alt", "title", "width", "height"], + }, + allowedSchemes: ["http", "https"], + allowedSchemesByTag: { + a: ["http", "https"], + img: ["http", "https"], + }, + allowProtocolRelative: false, + transformTags: { + a: sanitizeHtml.simpleTransform("a", { + rel: "noopener noreferrer", + target: "_blank", + }), + }, + }); + + return sanitized.trim(); + } + + private async upsertArticle(article: ScrapedArticle): Promise { + await this.postgres.query( + `INSERT INTO public.news_articles + (source, issue_number, slug, url, title, teaser, content_html, cover_image_url, author, published_at, scraped_at, updated_at) + VALUES ($1, $2, $3, $4, $5, $6, $7, $8, $9, coalesce($10, now()), now(), now()) + ON CONFLICT (url) DO UPDATE SET + title = EXCLUDED.title, + teaser = EXCLUDED.teaser, + content_html = EXCLUDED.content_html, + cover_image_url = EXCLUDED.cover_image_url, + author = EXCLUDED.author, + published_at = EXCLUDED.published_at, + scraped_at = now(), + updated_at = now() + WHERE coalesce(trim(public.news_articles.content_html), '') = ''`, + [ + article.source, + article.issueNumber, + article.slug, + article.url, + article.title, + article.teaser, + article.contentHtml, + article.coverImageUrl, + article.author, + article.publishedAt, + ] as Array, + ); + } + + private async fetchHtml(url: string): Promise { + if (!this.isAllowedUrl(url)) { + this.logger.warn(`[tldr-news] refusing to fetch disallowed url ${url}`); + return null; + } + + for (let attempt = 1; attempt <= 3; attempt++) { + try { + const response = await fetch(url, { + headers: { + "User-Agent": NewsService.USER_AGENT, + Accept: "text/html", + "Accept-Encoding": "identity", + }, + redirect: "manual", + size: NewsService.MAX_RESPONSE_BYTES, + signal: AbortSignal.timeout(NewsService.FETCH_TIMEOUT_MS), + }); + + if (response.status >= 300 && response.status < 400) { + this.logger.warn( + `[tldr-news] refusing to follow redirect ${response.status} for ${url}`, + ); + return null; + } + + if (!response.ok) { + this.logger.warn(`[tldr-news] http ${response.status} for ${url}`); + return null; + } + + return await response.text(); + } catch (error) { + if (attempt === 3) { + this.logger.warn( + `[tldr-news] fetch failed for ${url} after ${attempt} attempts`, + error, + ); + return null; + } + await new Promise((resolve) => setTimeout(resolve, 500 * attempt)); + } + } + + return null; + } + + private absoluteUrl( + href: string, + baseUrl: string = NewsService.BASE_URL, + ): string { + const trimmed = href.trim(); + + if (/^https?:\/\//i.test(trimmed)) { + try { + return new URL(trimmed).toString(); + } catch { + return baseUrl; + } + } + + if (/^[a-z][a-z0-9+.-]*:/i.test(trimmed) || trimmed.startsWith("//")) { + return baseUrl; + } + + try { + return new URL(trimmed, `${baseUrl}/`).toString(); + } catch { + return baseUrl; + } + } + + private sanitizeImageUrl(url: string | null | undefined): string | null { + if (!url) { + return null; + } + + let parsed: URL; + try { + parsed = new URL(url); + } catch { + return null; + } + + if (parsed.protocol !== "http:" && parsed.protocol !== "https:") { + return null; + } + + return parsed.toString(); + } + + private hostnameOf(url: string): string { + try { + return new URL(url).hostname.toLowerCase(); + } catch { + return "unknown"; + } + } + + private isAllowedUrl(url: string): boolean { + let parsed: URL; + try { + parsed = new URL(url); + } catch { + return false; + } + + if (parsed.protocol !== "https:") { + return false; + } + + const hostname = parsed.hostname.toLowerCase(); + return NewsService.ALLOWED_HOSTS.some( + (allowed) => hostname === allowed || hostname.endsWith(`.${allowed}`), + ); + } + + private parseIssueAndSlug(url: string): { + issueNumber: number | null; + slug: string | null; + } { + const match = url.match(/\/csgo-archive\/(\d+)-([^/?#]+)/); + if (!match) { + return { issueNumber: null, slug: null }; + } + return { issueNumber: Number(match[1]), slug: match[2] }; + } + + private parseDate(value: string | null): Date | null { + if (!value) { + return null; + } + const date = new Date(value); + return isNaN(date.getTime()) ? null : date; + } + + private cleanText(value: string | null | undefined): string | null { + if (!value) { + return null; + } + const trimmed = value.replace(/\s+/g, " ").trim(); + return trimmed.length > 0 ? trimmed : null; + } +} diff --git a/src/steam-match-history/steam-bans.service.ts b/src/steam-match-history/steam-bans.service.ts index c3c659a3..fec576aa 100644 --- a/src/steam-match-history/steam-bans.service.ts +++ b/src/steam-match-history/steam-bans.service.ts @@ -129,9 +129,7 @@ export class SteamBansService { await this.storeBans(bans); await this.expireLiftedAutoBans( - bans - .filter((ban) => ban.NumberOfVACBans === 0) - .map((ban) => ban.SteamId), + bans.filter((ban) => ban.NumberOfVACBans === 0).map((ban) => ban.SteamId), ); const flagged = bans.filter((ban) => ban.NumberOfVACBans > 0); @@ -321,15 +319,18 @@ export class SteamBansService { await this.postgres.query( `UPDATE public.players AS p - SET vac_banned = v.vac_banned - AND NOT EXISTS ( + SET vac_banned = CASE + WHEN EXISTS ( SELECT 1 FROM public.player_sanctions ps WHERE ps.player_steam_id = p.steam_id AND ps.type = 'ban' AND ps.sanctioned_by_steam_id IS NULL AND ps.deleted_at IS NOT NULL - ), + AND ps.deleted_at::date >= (now() - (v.days_since_last_ban || ' days')::interval)::date + ) THEN p.vac_banned + ELSE v.vac_banned + END, vac_ban_count = v.vac_ban_count, game_ban_count = v.game_ban_count, days_since_last_ban = v.days_since_last_ban, @@ -348,12 +349,14 @@ export class SteamBansService { private async applyAutoBans(bans: SteamBan[]): Promise { const flaggedIds = bans.map((ban) => ban.SteamId); + const flaggedDays = bans.map((ban) => ban.DaysSinceLastBan ?? 0); const needsBan = await this.postgres.query>( `SELECT p.steam_id::text AS steam_id FROM public.players p - WHERE p.steam_id = ANY($1::bigint[]) - AND p.role <> 'administrator' + JOIN UNNEST($1::bigint[], $2::int[]) AS f(steam_id, days_since_last_ban) + ON p.steam_id = f.steam_id + WHERE p.role <> 'administrator' AND NOT EXISTS ( SELECT 1 FROM public.player_sanctions ps @@ -369,8 +372,9 @@ export class SteamBansService { AND ps.type = 'ban' AND ps.sanctioned_by_steam_id IS NULL AND ps.deleted_at IS NOT NULL + AND ps.deleted_at::date >= (now() - (f.days_since_last_ban || ' days')::interval)::date )`, - [flaggedIds], + [flaggedIds, flaggedDays], ); if (needsBan.length === 0) { @@ -381,9 +385,7 @@ export class SteamBansService { const ids = needsBan.map((row) => row.steam_id); const reasons = ids.map((id) => SteamBansService.banReason(byId.get(id))); - const reactivated = await this.postgres.query< - Array<{ steam_id: string }> - >( + const reactivated = await this.postgres.query>( `UPDATE public.player_sanctions ps SET remove_sanction_date = NULL, reason = v.reason FROM UNNEST($1::bigint[], $2::text[]) AS v(steam_id, reason) diff --git a/src/system/enums/SystemSettingName.ts b/src/system/enums/SystemSettingName.ts index c6fc1bab..ee7a94ca 100644 --- a/src/system/enums/SystemSettingName.ts +++ b/src/system/enums/SystemSettingName.ts @@ -6,4 +6,5 @@ export enum SystemSettingName { SupportsDiscordBot = "public.supports_discord_bot", SupportsGameServerNodes = "supports_game_server_nodes", SupportsGameServerVersionPinning = "supports_game_server_version_pinning", + TldrNewsEnabled = "public.tldr_news_enabled", } diff --git a/src/utilities/QueueProcessors.ts b/src/utilities/QueueProcessors.ts index 744d49fb..4aea0abd 100644 --- a/src/utilities/QueueProcessors.ts +++ b/src/utilities/QueueProcessors.ts @@ -24,10 +24,12 @@ type Modules = | "Notifications" | "TypeSense" | "Matchmaking" + | "DraftGames" | "Telemetry" | "DedicatedServers" | "SteamMatchHistory" | "Faceit" + | "News" | "S3Scan"; export type UseQueueOptions = { diff --git a/yarn.lock b/yarn.lock index f38df7ef..96bd1bd7 100644 --- a/yarn.lock +++ b/yarn.lock @@ -2017,6 +2017,13 @@ dependencies: "@types/node" "*" +"@types/sanitize-html@^2.13.0": + version "2.16.1" + resolved "https://registry.yarnpkg.com/@types/sanitize-html/-/sanitize-html-2.16.1.tgz#27b9ac6cc29838f7a048bfec0113e8ad00918d0a" + integrity sha512-n9wjs8bCOTyN/ynwD8s/nTcTreIHB1vf31vhLMGqUPNHaweKC4/fAl4Dj+hUlCTKYgm4P3k83fmiFfzkZ6sgMA== + dependencies: + htmlparser2 "^10.1" + "@types/send@*": version "1.2.1" resolved "https://registry.yarnpkg.com/@types/send/-/send-1.2.1.tgz#6a784e45543c18c774c049bff6d3dbaf045c9c74" @@ -2859,6 +2866,11 @@ body-parser@^2.2.1: raw-body "^3.0.1" type-is "^2.0.1" +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + brace-expansion@^1.1.7: version "1.1.14" resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.14.tgz#d9de602370d91347cd9ddad1224d4fd701eb348b" @@ -3059,6 +3071,35 @@ chardet@^2.1.1: resolved "https://registry.yarnpkg.com/chardet/-/chardet-2.1.1.tgz#5c75593704a642f71ee53717df234031e65373c8" integrity sha512-PsezH1rqdV9VvyNhxxOW32/d75r01NY7TQCmOqomRo15ZSOKbpTFVsfjghxo6JloQUCGnH4k1LGu0R4yCLlWQQ== +cheerio-select@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/cheerio-select/-/cheerio-select-2.1.0.tgz#4d8673286b8126ca2a8e42740d5e3c4884ae21b4" + integrity sha512-9v9kG0LvzrlcungtnJtpGNxY+fzECQKhK4EGJX2vByejiMX84MFNQw4UxPJl3bFbTMw+Dfs37XaIkCwTZfLh4g== + dependencies: + boolbase "^1.0.0" + css-select "^5.1.0" + css-what "^6.1.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.0.1" + +cheerio@^1.0.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/cheerio/-/cheerio-1.2.0.tgz#f23b777c49021ead7475dcf3390d3535a7f896d6" + integrity sha512-WDrybc/gKFpTYQutKIK6UvfcuxijIZfMfXaYm8NMsPQxSYvf+13fXUJ4rztGGbJcBQ/GF55gvrZ0Bc0bj/mqvg== + dependencies: + cheerio-select "^2.1.0" + dom-serializer "^2.0.0" + domhandler "^5.0.3" + domutils "^3.2.2" + encoding-sniffer "^0.2.1" + htmlparser2 "^10.1.0" + parse5 "^7.3.0" + parse5-htmlparser2-tree-adapter "^7.1.0" + parse5-parser-stream "^7.1.2" + undici "^7.19.0" + whatwg-mimetype "^4.0.0" + chokidar@4.0.3, chokidar@^4.0.1: version "4.0.3" resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-4.0.3.tgz#7be37a4c03c9aee1ecfe862a4a23b2c70c205d30" @@ -3356,11 +3397,32 @@ cross-spawn@^7.0.3, cross-spawn@^7.0.6: shebang-command "^2.0.0" which "^2.0.1" +css-select@^5.1.0: + version "5.2.2" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.2.2.tgz#01b6e8d163637bb2dd6c982ca4ed65863682786e" + integrity sha512-TizTzUddG/xYLA3NXodFM0fSbNizXjOKhqiQQwvhlspadZokn1KDy0NZFS0wuEubIYAV5/c1/lAr0TaaFXEXzw== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-what@^6.1.0: + version "6.2.2" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.2.2.tgz#cdcc8f9b6977719fdfbd1de7aec24abf756b9dea" + integrity sha512-u/O3vwbptzhMs3L1fQE82ZSLHQQfto5gyZzwteVIEyeaY5Fc7R4dapF/BvRoSYFeqfBk4m0V1Vafq5Pjv25wvA== + cuint@^0.2.1: version "0.2.2" resolved "https://registry.yarnpkg.com/cuint/-/cuint-0.2.2.tgz#408086d409550c2631155619e9fa7bcadc3b991b" integrity sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw== +dayjs@^1.11.7: + version "1.11.21" + resolved "https://registry.yarnpkg.com/dayjs/-/dayjs-1.11.21.tgz#57f87562e62de76f3c704bd2b8d522fc33068eb2" + integrity sha512-98IT+HOahAisibz/yjKbzuOBwYcjJ7BCLPzARyHiyEBmRz4fatF+KPJszEHXsGYjUG234aH/cOjW1wwTbKUZlA== + debug@4, debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.3, debug@^4.3.4, debug@^4.3.7, debug@^4.4.0, debug@^4.4.3: version "4.4.3" resolved "https://registry.yarnpkg.com/debug/-/debug-4.4.3.tgz#c6ae432d9bd9662582fce08709b038c58e9e3d6a" @@ -3485,6 +3547,36 @@ discord.js@^14.14.1: tslib "^2.6.3" undici "6.24.1" +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^3.0.1, domutils@^3.2.2: + version "3.2.2" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.2.2.tgz#edbfe2b668b0c1d97c24baf0f1062b132221bc78" + integrity sha512-6kZKyUajlDuqlHKVX1w7gyslj9MPIXzIFiz/rGu35uC1wMi+kMhQwGhl4lt9unC9Vb9INnY9Z3/ZA3+FhASLaw== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + dotenv-expand@12.0.3: version "12.0.3" resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-12.0.3.tgz#6323ceca51ca0c1b1f0055e2aba39c79781739a6" @@ -3558,6 +3650,14 @@ encodeurl@^2.0.0: resolved "https://registry.yarnpkg.com/encodeurl/-/encodeurl-2.0.0.tgz#7b8ea898077d7e409d3ac45474ea38eaf0857a58" integrity sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg== +encoding-sniffer@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/encoding-sniffer/-/encoding-sniffer-0.2.1.tgz#396ec97ac22ce5a037ba44af1992ac9d46a7b819" + integrity sha512-5gvq20T6vfpekVtqrYQsSCFZ1wEg5+wW0/QaZMWkFr6BqD3NfKs0rLCx4rrVlSWJeZb5NBJgVLswK/w2MWU+Gw== + dependencies: + iconv-lite "^0.6.3" + whatwg-encoding "^3.1.1" + end-of-stream@^1.1.0: version "1.4.5" resolved "https://registry.yarnpkg.com/end-of-stream/-/end-of-stream-1.4.5.tgz#7344d711dea40e0b74abc2ed49778743ccedb08c" @@ -3573,6 +3673,21 @@ enhanced-resolve@^5.0.0, enhanced-resolve@^5.20.0, enhanced-resolve@^5.7.0: graceful-fs "^4.2.4" tapable "^2.3.3" +entities@^4.2.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +entities@^6.0.0: + version "6.0.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-6.0.1.tgz#c28c34a43379ca7f61d074130b2f5f7020a30694" + integrity sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g== + +entities@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/entities/-/entities-7.0.1.tgz#26e8a88889db63417dcb9a1e79a3f1bc92b5976b" + integrity sha512-TWrgLOFUQTH994YUyl1yT4uyavY5nNB5muff+RtWaqNVCAK408b5ZnnbNAUEWLTCpum9w6arT70i1XdQ4UeOPA== + error-ex@^1.3.1: version "1.3.4" resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.4.tgz#b3a8d8bb6f92eecc1629e3e27d3c8607a8a32414" @@ -4339,6 +4454,16 @@ html-escaper@^2.0.0: resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== +htmlparser2@^10.1, htmlparser2@^10.1.0: + version "10.1.0" + resolved "https://registry.yarnpkg.com/htmlparser2/-/htmlparser2-10.1.0.tgz#fe3f2e12c73b6e462d4e10395db9c1119e4d6ae4" + integrity sha512-VTZkM9GWRAtEpveh7MSF6SjjrpNVNNVJfFup7xTY3UpFtm67foy9HDVXneLtFVt4pMz5kZtgNcvCniNFb1hlEQ== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.3" + domutils "^3.2.2" + entities "^7.0.1" + http-errors@^2.0.0, http-errors@^2.0.1, http-errors@~2.0.1: version "2.0.1" resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-2.0.1.tgz#36d2f65bc909c8790018dd36fb4d93da6caae06b" @@ -4355,6 +4480,13 @@ human-signals@^2.1.0: resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== +iconv-lite@0.6.3, iconv-lite@^0.6.3: + version "0.6.3" + resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.6.3.tgz#a52f80bf38da1952eb5c681790719871a1a72501" + integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw== + dependencies: + safer-buffer ">= 2.1.2 < 3.0.0" + iconv-lite@^0.7.0, iconv-lite@~0.7.0: version "0.7.2" resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.7.2.tgz#d0bdeac3f12b4835b7359c2ad89c422a4d1cc72e" @@ -4493,6 +4625,11 @@ is-number@^7.0.0: resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== +is-plain-object@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-5.0.0.tgz#4427f50ab3429e9025ea7d52e9043a9ef4159344" + integrity sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q== + is-promise@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-4.0.0.tgz#42ff9f84206c1991d26debf520dd5c01042dd2f3" @@ -5123,6 +5260,13 @@ kvparser@^1.0.1: resolved "https://registry.yarnpkg.com/kvparser/-/kvparser-1.0.2.tgz#1d1cbec693410c3242e49ba667ca6949866fa134" integrity sha512-5P/5qpTAHjVYWqcI55B3yQwSY2FUrYYrJj5i65V1Wmg7/4W4OnBcaodaEvLyVuugeOnS+BAaKm9LbPazGJcRyA== +launder@^1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/launder/-/launder-1.7.1.tgz#ef7155ab0c3ddec2323089c961d2e9a249aa5b0d" + integrity sha512-mU6WRz5EusL9ZZuiZ5SO4Y6C0P9PAUR9iwdb6bzj4KDihm28DiHFw+/yk9DBH4f+Pv1wuzQ4e2jV3oQ7mkIqvw== + dependencies: + dayjs "^1.11.7" + lazystream@^1.0.0: version "1.0.1" resolved "https://registry.yarnpkg.com/lazystream/-/lazystream-1.0.1.tgz#494c831062f1f9408251ec44db1cba29242a2638" @@ -5545,6 +5689,11 @@ mute-stream@^2.0.0: resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-2.0.0.tgz#a5446fc0c512b71c83c44d908d5c7b7b4c493b2b" integrity sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA== +nanoid@^3.3.12: + version "3.3.14" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.14.tgz#02d7e019f05dd8eeee2779c6f42206c06542ab33" + integrity sha512-U9kYi5bpVMEI31yC8iw4bJJp0avcHXA0W8/wNfLfnvJYzihQo2ZRPYPvpAAd570HAcCBjCTN7vnr+v4StKl1IQ== + napi-postinstall@^0.3.0: version "0.3.4" resolved "https://registry.yarnpkg.com/napi-postinstall/-/napi-postinstall-0.3.4.tgz#7af256d6588b5f8e952b9190965d6b019653bbb9" @@ -5630,6 +5779,13 @@ npm-run-path@^4.0.1: dependencies: path-key "^3.0.0" +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + oauth4webapi@^3.8.5: version "3.8.6" resolved "https://registry.yarnpkg.com/oauth4webapi/-/oauth4webapi-3.8.6.tgz#0ede466d8be8774db38558a90612c8b6186abba4" @@ -5797,6 +5953,33 @@ parse-json@^5.2.0: json-parse-even-better-errors "^2.3.0" lines-and-columns "^1.1.6" +parse-srcset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/parse-srcset/-/parse-srcset-1.0.2.tgz#f2bd221f6cc970a938d88556abc589caaaa2bde1" + integrity sha512-/2qh0lav6CmI15FzA3i/2Bzk2zCgQhGMkvhOhKNcBVQ1ldgpbfiNTVslmooUmWJcADi1f1kIeynbDRVzNlfR6Q== + +parse5-htmlparser2-tree-adapter@^7.1.0: + version "7.1.0" + resolved "https://registry.yarnpkg.com/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-7.1.0.tgz#b5a806548ed893a43e24ccb42fbb78069311e81b" + integrity sha512-ruw5xyKs6lrpo9x9rCZqZZnIUntICjQAd0Wsmp396Ul9lN/h+ifgVV1x1gZHi8euej6wTfpqX8j+BFQxF0NS/g== + dependencies: + domhandler "^5.0.3" + parse5 "^7.0.0" + +parse5-parser-stream@^7.1.2: + version "7.1.2" + resolved "https://registry.yarnpkg.com/parse5-parser-stream/-/parse5-parser-stream-7.1.2.tgz#d7c20eadc37968d272e2c02660fff92dd27e60e1" + integrity sha512-JyeQc9iwFLn5TbvvqACIF/VXG6abODeB3Fwmv/TGdLk2LfbWkaySGY72at4+Ty7EkPZj854u4CrICqNk2qIbow== + dependencies: + parse5 "^7.0.0" + +parse5@^7.0.0, parse5@^7.3.0: + version "7.3.0" + resolved "https://registry.yarnpkg.com/parse5/-/parse5-7.3.0.tgz#d7e224fa72399c7a175099f45fc2ad024b05ec05" + integrity sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw== + dependencies: + entities "^6.0.0" + parseurl@^1.3.3, parseurl@~1.3.3: version "1.3.3" resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4" @@ -6013,6 +6196,15 @@ pluralize@8.0.0: resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-8.0.0.tgz#1a6fa16a38d12a1901e0320fa017051c539ce3b1" integrity sha512-Nc3IT5yHzflTfbjgqWcCPpo7DaKy4FnpB0l/zCAW0Tc7jxAiuqSxHasntB3D7887LSrA93kDJ9IXovxJYxyLCA== +postcss@^8.3.11: + version "8.5.15" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.5.15.tgz#d1eaf677a324e9ec02196da2d3fecf4a0b9a735c" + integrity sha512-FfR8sjd4em2T6fb3I2MwAJU7HWVMr9zba+enmQeeWFfCbm+UOC/0X4DS8XtpUTMwWMGbjKYP7xjfNekzyGmB3A== + dependencies: + nanoid "^3.3.12" + picocolors "^1.1.1" + source-map-js "^1.2.1" + postgres-array@~2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/postgres-array/-/postgres-array-2.0.0.tgz#48f8fce054fbc69671999329b8834b772652d82e" @@ -6408,6 +6600,19 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== +sanitize-html@^2.13.0: + version "2.17.5" + resolved "https://registry.yarnpkg.com/sanitize-html/-/sanitize-html-2.17.5.tgz#bef1d103773760e1c52a01b1f58178bee9c10556" + integrity sha512-ZmU1joGRrvoyctKIiuwUxqR6moLoU2Wk+2bMccN6f7UwhAmwYDvWziqPxRDDN2Qip62NqnIrVrT9akbL6Wretg== + dependencies: + deepmerge "^4.2.2" + escape-string-regexp "^4.0.0" + htmlparser2 "^10.1.0" + is-plain-object "^5.0.0" + launder "^1.7.1" + parse-srcset "^1.0.2" + postcss "^8.3.11" + sax@>=0.6.0: version "1.6.0" resolved "https://registry.yarnpkg.com/sax/-/sax-1.6.0.tgz#da59637629307b97e7c4cb28e080a7bc38560d5b" @@ -6651,6 +6856,11 @@ socks@^2.8.3: ip-address "^10.1.1" smart-buffer "^4.2.0" +source-map-js@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.1.tgz#1ce5650fddd87abc099eda37dcff024c2667ae46" + integrity sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA== + source-map-support@0.5.13: version "0.5.13" resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" @@ -7311,6 +7521,11 @@ undici@^5.22.0: dependencies: "@fastify/busboy" "^2.0.0" +undici@^7.19.0: + version "7.28.0" + resolved "https://registry.yarnpkg.com/undici/-/undici-7.28.0.tgz#97d64564198b285bc281f0e8e29597e3d11fe7ec" + integrity sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA== + universalify@^2.0.0: version "2.0.1" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.1.tgz#168efc2180964e6386d061e094df61afe239b18d" @@ -7493,6 +7708,18 @@ websocket13@^4.0.0: tiny-typed-emitter "^2.1.0" websocket-extensions "^0.1.4" +whatwg-encoding@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-3.1.1.tgz#d0f4ef769905d426e1688f3e34381a99b60b76e5" + integrity sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ== + dependencies: + iconv-lite "0.6.3" + +whatwg-mimetype@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-4.0.0.tgz#bc1bf94a985dc50388d54a9258ac405c3ca2fc0a" + integrity sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg== + whatwg-url@^5.0.0: version "5.0.0" resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-5.0.0.tgz#966454e8765462e37644d3626f6742ce8b70965d"